Class: iHRIS Module Contact: Difference between revisions
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
*Extends the class: [[Class: I2CE_Module | I2CE_Module]]. | *Extends the class: [[Class: I2CE_Module | I2CE_Module]]. | ||
*Location: Part of the module [[iHRIS Common Module List#Contact|Contact]] in the package [https://launchpad.net/ihris-common iHRIS Common] | *Location: Part of the module [[iHRIS Common Module List#Contact|Contact]] in the package [https://launchpad.net/ihris-common iHRIS Common] | ||
*Source: Defined in the file [http://bazaar.launchpad.net/~intrahealth+informatics/ihris-common/4.0. | *Source: Defined in the file [http://bazaar.launchpad.net/~intrahealth+informatics/ihris-common/4.0.2-release/annotate/head:/modules/Contact/lib/iHRIS_Module_Contact.php#L32 modules/Contact/lib/iHRIS_Module_Contact.php] on line 32 | ||
*Author: Luke Duncan <lduncan@intrahealth.org> | *Author: Luke Duncan <lduncan@intrahealth.org> | ||
Line 11: | Line 11: | ||
===$constant_migrate=== | ===$constant_migrate=== | ||
@var protected static $constant_migraate array with keys the numeric ids of contact types before the new I2CE_FormField_MAPPED was introduced. The values are the corresponding id's after I2CE_FormField_MAPPED. | @var protected static $constant_migraate array with keys the numeric ids of contact types before the new I2CE_FormField_MAPPED was introduced. The values are the corresponding id's after I2CE_FormField_MAPPED. | ||
*Defined in [http://bazaar.launchpad.net/~intrahealth+informatics/ihris-common/4.0.2-release/annotate/head:/modules/Contact/lib/iHRIS_Module_Contact.php#L62 common/modules/Contact/lib/iHRIS_Module_Contact.php] on line 62 | |||
*Type: static protected $constant_migrate | *Type: static protected $constant_migrate | ||
Line 16: | Line 17: | ||
===changeContactForm()=== | ===changeContactForm()=== | ||
Change the all child contact form with given type of a form to a form which subclasses the contact form. | Change the all child contact form with given type of a form to a form which subclasses the contact form. | ||
*Defined in [http://bazaar.launchpad.net/~intrahealth+informatics/ihris-common/4.0.2-release/annotate/head:/modules/Contact/lib/iHRIS_Module_Contact.php#L113 common/modules/Contact/lib/iHRIS_Module_Contact.php] on line 113 | |||
*Signature: static public function changeContactForm($parent_form,$contact_type,$new_child_form,$delete_old,$remove_contact) | *Signature: static public function changeContactForm($parent_form,$contact_type,$new_child_form,$delete_old,$remove_contact) | ||
*Parameters: | *Parameters: | ||
Line 27: | Line 29: | ||
===pre_upgrade()=== | ===pre_upgrade()=== | ||
Run the pre upgrade for this module. This can use the old config data before it has been changed from the config. | Run the pre upgrade for this module. This can use the old config data before it has been changed from the config. | ||
*Defined in [http://bazaar.launchpad.net/~intrahealth+informatics/ihris-common/4.0.2-release/annotate/head:/modules/Contact/lib/iHRIS_Module_Contact.php#L42 common/modules/Contact/lib/iHRIS_Module_Contact.php] on line 42 | |||
*Signature: public function pre_upgrade($old_vers,$new_vers,$new_storage) | *Signature: public function pre_upgrade($old_vers,$new_vers,$new_storage) | ||
*Parameters: | *Parameters: | ||
Line 35: | Line 38: | ||
===removeContactForm()=== | ===removeContactForm()=== | ||
Remove the contact form from the given parent form | Remove the contact form from the given parent form | ||
*Defined in [http://bazaar.launchpad.net/~intrahealth+informatics/ihris-common/4.0.2-release/annotate/head:/modules/Contact/lib/iHRIS_Module_Contact.php#L207 common/modules/Contact/lib/iHRIS_Module_Contact.php] on line 207 | |||
*Signature: static public function removeContactForm($parent_form) | *Signature: static public function removeContactForm($parent_form) | ||
*Parameters: | *Parameters: | ||
Line 41: | Line 45: | ||
===upgrade()=== | ===upgrade()=== | ||
Upgrade this module if necessary | Upgrade this module if necessary | ||
*Defined in [http://bazaar.launchpad.net/~intrahealth+informatics/ihris-common/4.0.2-release/annotate/head:/modules/Contact/lib/iHRIS_Module_Contact.php#L76 common/modules/Contact/lib/iHRIS_Module_Contact.php] on line 76 | |||
*Signature: public function upgrade($old_vers,$new_vers) | *Signature: public function upgrade($old_vers,$new_vers) | ||
*Parameters: | *Parameters: |
Revision as of 09:20, 10 November 2009
This article describes the class iHRIS_Module_Contact.
- Extends the class: I2CE_Module.
- Location: Part of the module Contact in the package iHRIS Common
- Source: Defined in the file modules/Contact/lib/iHRIS_Module_Contact.php on line 32
- Author: Luke Duncan <lduncan@intrahealth.org>
- Author: Carl Leitner <litlfred@intrahealth.org>
- Since: 3.2.3
I2CE_Module_Contact
Variables
$constant_migrate
@var protected static $constant_migraate array with keys the numeric ids of contact types before the new I2CE_FormField_MAPPED was introduced. The values are the corresponding id's after I2CE_FormField_MAPPED.
- Defined in common/modules/Contact/lib/iHRIS_Module_Contact.php on line 62
- Type: static protected $constant_migrate
Methods
changeContactForm()
Change the all child contact form with given type of a form to a form which subclasses the contact form.
- Defined in common/modules/Contact/lib/iHRIS_Module_Contact.php on line 113
- Signature: static public function changeContactForm($parent_form,$contact_type,$new_child_form,$delete_old,$remove_contact)
- Parameters:
- string $parent_form
The parent form @param string This function assumes that iHRIS_Module_Contact->upgrade() has been called for $new_vers >= 3.2.5 so that the $contact_type should be one of the values of ::$contact_type. E.g. 'contact_type|facilty' - $contact_type
- string $new_child_form
The new child form (which should subclass contact) in which the existing values are to be saved. - boolean $delete_old
If true the old child (matching) forms are removed - boolean $remove_contact
Defaults to true in which case we remove 'contact' as a child form- Default Value: true
- string $parent_form
- Returns: boolean.
True on success.
pre_upgrade()
Run the pre upgrade for this module. This can use the old config data before it has been changed from the config.
- Defined in common/modules/Contact/lib/iHRIS_Module_Contact.php on line 42
- Signature: public function pre_upgrade($old_vers,$new_vers,$new_storage)
- Parameters:
- string $old_vers
- string $new_vers
- I2CE_MagicDataNode $new_storage
- Returns: boolean
removeContactForm()
Remove the contact form from the given parent form
- Defined in common/modules/Contact/lib/iHRIS_Module_Contact.php on line 207
- Signature: static public function removeContactForm($parent_form)
- Parameters:
- string $parent_form
- Returns: booelan.
true on success
upgrade()
Upgrade this module if necessary
- Defined in common/modules/Contact/lib/iHRIS_Module_Contact.php on line 76
- Signature: public function upgrade($old_vers,$new_vers)
- Parameters:
- Returns: boolean
Inherited Methods
__construct()
This public method is inherited from I2CE_Module->__construct()
action_configure()
This public method is inherited from I2CE_Module->action_configure()
action_disable()
This public method is inherited from I2CE_Module->action_disable()
action_enable()
This public method is inherited from I2CE_Module->action_enable()
action_initialize()
This public method is inherited from I2CE_Module->action_initialize()
conflict_external()
This public method is inherited from I2CE_Module->conflict_external()
getCLIHooks()
This public method is inherited from I2CE_Module->getCLIHooks()
getCLIMethods()
This public method is inherited from I2CE_Module->getCLIMethods()
getConfig()
This public method is inherited from I2CE_Module->getConfig()
getHooks()
This public method is inherited from I2CE_Module->getHooks()
getMethods()
This public method is inherited from I2CE_Module->getMethods()
post_update()
This public method is inherited from I2CE_Module->post_update()
requirement_external()
This public method is inherited from I2CE_Module->requirement_external()
_hasMethod()
This public method is inherited from I2CE_Fuzzy->_hasMethod()
Inherited Fuzzy Methods
launchBackgroundProcess()
This method is inherited from I2CE_Module->launchBackgroundProcess()
launchBackgroundPHPScript()
This method is inherited from I2CE_Module->launchBackgroundPHPScript()
launchBackgroundPage()
This method is inherited from I2CE_Module->launchBackgroundPage()
userMessage()
This method is inherited from I2CE_Fuzzy->userMessage()