Elgg
Version 6.0
|
Functions | |
setProfileData (string $profile_field_name, $value, int $access_id=ACCESS_PRIVATE) | |
Store profile data. More... | |
getProfileData (string $profile_field_name) | |
Get profile data. More... | |
getAllProfileAnnotations () | |
Returns all profile annotations. More... | |
deleteProfileData (string $profile_field_name) | |
Remove profile data. More... | |
Variables | |
trait | ProfileData |
Adds methods to save profile data to an ElggEntity. More... | |
Elgg\Traits\Entity\deleteProfileData | ( | string | $profile_field_name | ) |
Remove profile data.
string | $profile_field_name | the profile field name to remove |
Definition at line 134 of file ProfileData.php.
|
protected |
Elgg\Traits\Entity\getProfileData | ( | string | $profile_field_name | ) |
Get profile data.
string | $profile_field_name | profile field name |
Definition at line 58 of file ProfileData.php.
Elgg\Traits\Entity\setProfileData | ( | string | $profile_field_name, |
$value, | |||
int | $access_id = ACCESS_PRIVATE |
||
) |
Store profile data.
string | $profile_field_name | profile field name |
mixed | $value | profile data |
int | $access_id | access of the profile data |
Definition at line 27 of file ProfileData.php.
trait Elgg::Traits::Entity\ProfileData |
Adds methods to save profile data to an ElggEntity.
Data is stored in Annotations (and Metadata for BC reasons)
Definition at line 11 of file ProfileData.php.