diff options
author | Evan Winslow <evan@elgg.org> | 2011-12-31 12:31:43 -0800 |
---|---|---|
committer | Evan Winslow <evan@elgg.org> | 2011-12-31 12:31:43 -0800 |
commit | 7684d074729c787c03dca4b394f9b0b6a3f108e9 (patch) | |
tree | 8d5439036b07e62f0e0883b8ad01806701b7b8a2 /engine/classes/ElggUser.php | |
parent | 050d445fef73bf91968841752d9e1bdb652485f6 (diff) | |
download | elgg-7684d074729c787c03dca4b394f9b0b6a3f108e9.tar.gz elgg-7684d074729c787c03dca4b394f9b0b6a3f108e9.tar.bz2 |
Refs #3209: Adds property docs for the four main entity classes
Diffstat (limited to 'engine/classes/ElggUser.php')
-rw-r--r-- | engine/classes/ElggUser.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/engine/classes/ElggUser.php b/engine/classes/ElggUser.php index a1c7147a5..ab0610ac0 100644 --- a/engine/classes/ElggUser.php +++ b/engine/classes/ElggUser.php @@ -6,6 +6,15 @@ * * @package Elgg.Core * @subpackage DataModel.User + * + * @property string $name The display name that the user will be known by in the network + * @property string $username The short, reference name for the user in the network + * @property string $email The email address to which Elgg will send email notifications + * @property string $language The language preference of the user (ISO 639-1 formatted) + * @property string $banned 'yes' if the user is banned from the network, 'no' otherwise + * @property string $admin 'yes' if the user is an administrator of the network, 'no' otherwise + * @property string $password The hashed password of the user + * @property string $salt The salt used to secure the password before hashing */ class ElggUser extends ElggEntity implements Friendable { |