Class: I2CE Entry: Difference between revisions
From IHRIS Wiki
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
This article desrcibes the class | This article desrcibes the class ''I2CE_Entry''. | ||
*Location: Part of the module [[iHRIS Module List#forms|forms]] in the package [https://launchpad.net/i2ce I2CE] | *Location: Part of the module [[iHRIS Module List#forms|forms]] in the package [https://launchpad.net/i2ce I2CE] | ||
*Source: Defined in the file [http://bazaar.launchpad.net/~intrahealth+informatics/i2ce/4.0.0-release/annotate/head:/modules/Forms/lib/I2CE_Entry.php modules/Forms/lib/I2CE_Entry.php] | *Source: Defined in the file [http://bazaar.launchpad.net/~intrahealth+informatics/i2ce/4.0.0-release/annotate/head:/modules/Forms/lib/I2CE_Entry.php modules/Forms/lib/I2CE_Entry.php] | ||
*Author: Luke Duncan <lduncan@intrahealth.org> | *Author: Luke Duncan <lduncan@intrahealth.org> | ||
*Since: v2.0.0 | *Since: v2.0.0 | ||
*See: [[Class: I2CE_FormField | I2CE_FormField]] | *See: [[Class: I2CE_FormField | I2CE_FormField]] | ||
Class for representing an entry in the database. | Class for representing an entry in the database. Multiple entries may exist for any [[Class: I2CE_FormField | I2CE_FormField]] value to track all changes since the record was created. | ||
Multiple entries may exist for any [[Class: I2CE_FormField | I2CE_FormField]] value to track all changes since the record was created. | |||
==Variables== | ==Variables== | ||
===$date=== | ===$date=== |
Revision as of 22:13, 16 October 2009
This article desrcibes the class I2CE_Entry.
- Location: Part of the module forms in the package I2CE
- Source: Defined in the file modules/Forms/lib/I2CE_Entry.php
- Author: Luke Duncan <lduncan@intrahealth.org>
- Since: v2.0.0
- See: I2CE_FormField
Class for representing an entry in the database. Multiple entries may exist for any I2CE_FormField value to track all changes since the record was created.
Variables
$date
The date this entry was added.
- Type: public I2CE_Date $date
$who
The user id of the person who made this entry.
- Type: public nteger $who
$change_type
The type of change for this entry.
- Type: public nteger $change_type
$value
The value for this entry.
- Type: public mixed $value
Methods
__construct()
Create a new instance of a I2CE_Entry.
This will usually be done by the I2CE_FormField object when it needs access to the history for this field.
- Signature: public function __construct($date,$who,$change_type,$value)
Parameters:
getValue()
Return the value of this entry
- Signature: public function getValue()
- Returns: mixed;