~kibsden/ihris-uganda/baylor-train

« back to all changes in this revision

Viewing changes to modules/Mentor/modules/FacilityRegistration/lib/iHRIS_Module_FacilityRegistration.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_FacilityRegistration extends I2CE_Module {
 
34
 
 
35
    public static function getMethods() {
 
36
        return array(
 
37
            'iHRIS_PageViewPrivateFacility->action_facility_registration' => 'action_facility_registration'
 
38
            );
 
39
    }
 
40
    
 
41
    /**
 
42
     * Return the array of hooks available in this module.
 
43
     * @return array
 
44
     */
 
45
    public static function getHooks() {
 
46
        return array(
 
47
                'validate_form_facility_registration' => 'validate_form_facility_registration'
 
48
                );
 
49
    }
 
50
 
 
51
 
 
52
    public function action_facility_registration( $page ) {
 
53
        if ( !$page instanceof iHRIS_PageViewPrivateFacility ) {
 
54
            return;
 
55
        }
 
56
        $facility = $page->getFacility();
 
57
               
 
58
        $success = $page->addChildForms( 'facility_registration' );
 
59
        $template = $page->getTemplate();
 
60
        if( !$page->hasChildForm( "facility_registration" ) ) {
 
61
            $template->appendFileById( "view_privatefacility_registration_link.html", "span", "registration_links" );
 
62
        }
 
63
        
 
64
        return $success;
 
65
    }
 
66
    /**
 
67
     * Validate any extra information other than required fields
 
68
     * for registrations.
 
69
     * @param I2CE_Form $form
 
70
     */
 
71
    public function validate_form_facility_registration( $form ) {
 
72
        if ( $form->registration_date->before( $form->application_date ) ) {
 
73
            $form->getField( "registration_date" )->setInvalid( "The registration date must be after the application date." );
 
74
        }
 
75
        
 
76
    }
 
77
  
 
78
 
 
79
 
 
80
}
 
81
# Local Variables:
 
82
# mode: php
 
83
# c-default-style: "bsd"
 
84
# indent-tabs-mode: nil
 
85
# c-basic-offset: 4
 
86
# End: