GauffrSlave persistant object. More...
Public Member Functions | |
| getState () | |
| getID () | |
Static Public Member Functions | |
| static | fetchSlaveByIdentifier ($identifier) |
Public Attributes | |
| $Identifier | |
| $Name | |
| $Location | |
Protected Attributes | |
| $ID | |
GauffrSlave persistant object.
The GauffrSlave classes.
Allow persistence for object GauffrSlave.
Definition at line 19 of file gauffrslave.php.
| static GauffrSlave::fetchSlaveByIdentifier | ( | $ | identifier | ) | [static] |
fetch user by Login
Definition at line 61 of file gauffrslave.php.
References GauffrPersistentObject::fetchPersistantObjectByAttribute().
Referenced by GauffrUser::hasCredentialByIdentifier().
{
return self::fetchPersistantObjectByAttribute( 'GauffrSlave', 'Identifier', $identifier );
}
| GauffrSlave::getID | ( | ) |
| GauffrSlave::getState | ( | ) |
Get PersistantObject state
Definition at line 32 of file gauffrslave.php.
{
return array(
'ID' => $this->ID,
'Identifier' => $this->Identifier,
'Name' => $this->Name,
'Location' => $this->Location
);
}
1.7.1