Inheritance diagram for User:

Definition at line 32 of file user.php.
Public Member Functions | |
| __construct ($id) | |
| get_id () | |
| isAdmin () | |
| offsetExists ($offset) | |
| offsetGet ($offset) | |
| offsetSet ($offset, $value) | |
| offsetUnset ($offset) | |
Private Attributes | |
| $id | |
| $properties = array() | |
|
|
Definition at line 37 of file user.php. References $id. 00037 {
00038 $this->id = $id;
00039 }
|
|
|
Definition at line 41 of file user.php. 00041 {
00042 return $this->id;
00043 }
|
|
|
Reimplemented in AdminUser. Definition at line 45 of file user.php. 00045 {
00046 return FALSE;
00047 }
|
|
|
Definition at line 53 of file user.php. 00053 {
00054 return isset($this->properties[$offset]);
00055 }
|
|
|
Definition at line 57 of file user.php. 00057 {
00058 return $this->properties[$offset];
00059 }
|
|
||||||||||||
|
Definition at line 61 of file user.php. 00061 {
00062 $this->properties[$offset] = $value;
00063 }
|
|
|
Definition at line 65 of file user.php. 00065 {
00066 unset($this->properties[$offset]);
00067 }
|
|
|
Definition at line 34 of file user.php. Referenced by __construct(). |
|
|
|
1.4.2