~kibsden/ihris-uganda/baylor-train

« back to all changes in this revision

Viewing changes to modules/Mentor/modules/FacilityService/lib/iHRIS_Module_FacilityService.php

  • Committer: Dennis Kibiye
  • Date: 2012-08-15 12:39:06 UTC
  • Revision ID: kibsden@gmail.com-20120815123906-ckmfgnpgi8xqiz9o
First Initialisation of In Service Baylor Training System Based on iHRIS Manage

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
* © Copyright 2009 IntraHealth International, Inc.
 
4
 
5
* This File is part of I2CE 
 
6
 
7
* I2CE is free software; you can redistribute it and/or modify 
 
8
* it under the terms of the GNU General Public Registration as published by 
 
9
* the Free Software Foundation; either version 3 of the Registration, or
 
10
* (at your option) any later version.
 
11
 
12
* This program is distributed in the hope that it will be useful, 
 
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of 
 
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
 
15
* GNU General Public Registration for more details.
 
16
 
17
* You should have received a copy of the GNU General Public Registration 
 
18
* along with this program.  If not, see <http://www.gnu.org/registrations/>.
 
19
*
 
20
* @package UG-Qualify
 
21
* @author Luke Duncan <lduncan@intrahealth.org>
 
22
* @version v4.0.6
 
23
* @since v4.0.6
 
24
* @filesource
 
25
*/
 
26
/**
 
27
* Class iHRIS_Module_FacilityRegistration
 
28
*
 
29
* @access public
 
30
*/
 
31
 
 
32
 
 
33
class iHRIS_Module_FacilityService extends I2CE_Module {
 
34
 
 
35
    public static function getMethods() {
 
36
        return array(
 
37
            'iHRIS_PageViewPrivateFacility->action_facility_service' => 'action_facility_service'
 
38
            );
 
39
    }
 
40
    
 
41
    public function action_facility_service( $page ) {
 
42
        if ( !$page instanceof iHRIS_PageViewPrivateFacility ) {
 
43
            return;
 
44
        }
 
45
        $facility = $page->getFacility();
 
46
               
 
47
        $success = $page->addChildForms( 'facility_service' );
 
48
        $template = $page->getTemplate();
 
49
        
 
50
        return $success;
 
51
    }
 
52
  
 
53
 
 
54
 
 
55
}
 
56
# Local Variables:
 
57
# mode: php
 
58
# c-default-style: "bsd"
 
59
# indent-tabs-mode: nil
 
60
# c-basic-offset: 4
 
61
# End: