Elgg
Version 4.3
|
A generic class that contains shared code among , , and . More...
Public Member Functions | |
__isset ($name) | |
Test if property is set either as an attribute or metadata. More... | |
__unset ($name) | |
Unset a property from metadata or attribute. More... | |
getURL () | |
Get a URL for this object. More... | |
save () | |
Save this data to the appropriate database table. More... | |
delete () | |
Delete this data. More... | |
getTimeCreated () | |
Returns the UNIX epoch time that this entity was created. More... | |
toObject (array $params=[]) | |
Get a plain old object copy for public consumption. More... | |
rewind () | |
Iterator interface. More... | |
current () | |
Iterator interface. More... | |
key () | |
Iterator interface. More... | |
next () | |
Iterator interface. More... | |
valid () | |
Iterator interface. More... | |
offsetSet ($key, $value) | |
Array access interface. More... | |
offsetGet ($key) | |
Array access interface. More... | |
offsetUnset ($key) | |
Array access interface. More... | |
offsetExists ($offset) | |
Array access interface. More... | |
getID () | |
{Get unique item identifier within a collection.
| |
getPriority () | |
{Get priority (weight) of the item within a collection.
| |
__serialize () | |
Called during serialization. More... | |
__unserialize (array $data) | |
Called during unserialization. More... | |
Protected Member Functions | |
initializeAttributes () | |
Initialize the attributes array. More... | |
getDatabase () | |
Provides a pointer to the database object. More... | |
Protected Attributes | |
$attributes = [] | |
$valid = false | |
A generic class that contains shared code among , , and .
Definition at line 10 of file ElggData.php.
ElggData::__isset | ( | $name | ) |
Test if property is set either as an attribute or metadata.
Use isset($entity->property)
string | $name | The name of the attribute or metadata. |
Definition at line 57 of file ElggData.php.
ElggData::__serialize | ( | ) |
Called during serialization.
Definition at line 270 of file ElggData.php.
ElggData::__unserialize | ( | array | $data | ) |
Called during unserialization.
array | $data | serialized data |
Definition at line 283 of file ElggData.php.
ElggData::__unset | ( | $name | ) |
Unset a property from metadata or attribute.
string | $name | The name of the attribute or metadata. |
Definition at line 70 of file ElggData.php.
ElggData::current | ( | ) |
Iterator interface.
Definition at line 139 of file ElggData.php.
|
abstract |
Delete this data.
|
protected |
Provides a pointer to the database object.
Definition at line 44 of file ElggData.php.
ElggData::getID | ( | ) |
{Get unique item identifier within a collection.
Implements Elgg\Collections\CollectionItemInterface.
Definition at line 252 of file ElggData.php.
ElggData::getPriority | ( | ) |
{Get priority (weight) of the item within a collection.
Implements Elgg\Collections\CollectionItemInterface.
Definition at line 259 of file ElggData.php.
ElggData::getTimeCreated | ( | ) |
Returns the UNIX epoch time that this entity was created.
Definition at line 100 of file ElggData.php.
|
abstract |
Get a URL for this object.
|
protected |
Initialize the attributes array.
This is vital to distinguish between metadata and base parameters.
Definition at line 35 of file ElggData.php.
ElggData::key | ( | ) |
Iterator interface.
Definition at line 151 of file ElggData.php.
ElggData::next | ( | ) |
Iterator interface.
Definition at line 163 of file ElggData.php.
ElggData::offsetExists | ( | $offset | ) |
Array access interface.
int | $offset | Offset |
Definition at line 245 of file ElggData.php.
ElggData::offsetGet | ( | $key | ) |
Array access interface.
mixed | $key | Name |
Definition at line 210 of file ElggData.php.
ElggData::offsetSet | ( | $key, | |
$value | |||
) |
Array access interface.
mixed | $key | Name |
mixed | $value | Value |
Definition at line 194 of file ElggData.php.
ElggData::offsetUnset | ( | $key | ) |
Array access interface.
mixed | $key | Name |
Definition at line 228 of file ElggData.php.
ElggData::rewind | ( | ) |
Iterator interface.
Definition at line 127 of file ElggData.php.
|
abstract |
Save this data to the appropriate database table.
|
abstract |
Get a plain old object copy for public consumption.
array | $params | Export parameters |
ElggData::valid | ( | ) |
Iterator interface.
Definition at line 175 of file ElggData.php.
|
protected |
Definition at line 26 of file ElggData.php.
|
protected |
Definition at line 117 of file ElggData.php.