Skip to content

Commit

Permalink
Added documentation of magic properties to ElggEntity
Browse files Browse the repository at this point in the history
git-svn-id: http://code.elgg.org/elgg/trunk@8805 36083f99-b078-4883-b0ff-0f9b5a30f544
  • Loading branch information
ewinslow committed Mar 21, 2011
1 parent 72847ed commit ee57dbe
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions engine/classes/ElggEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@
* @package Elgg.Core
* @subpackage DataModel.Entities
* @link http://docs.elgg.org/DataModel/ElggEntity
*
* @property string $type object, user, group, or site (read-only after save)
* @property string $subtype Further clarifies the nature of the entity (read-only after save)
* @property int $guid The unique identifier for this entity (read only)
* @property int $owner_guid The GUID of the creator of this entity
* @property int $container_guid The GUID of the entity containing this entity
* @property int $site_guid The GUID of the website this entity is associated with
* @property int $access_id Specifies the visibility level of this entity
* @property int $time_created A UNIX timestamp of when the entity was created (read-only, set on first save)
* @property int $time_updated A UNIX timestamp of when the entity was last updated (automatically updated on save)
*/
abstract class ElggEntity extends ElggData implements
Notable, // Calendar interface
Expand Down Expand Up @@ -239,8 +249,7 @@ public function getMetaData($name) {
if ((int) ($this->guid) > 0) {
$md = elgg_get_metadata(array(
'guid' => $this->getGUID(),
'metadata_name' => $name,
'limit' => 0
'metadata_name' => $name
));
} else {
if (isset($this->temp_metadata[$name])) {
Expand Down

0 comments on commit ee57dbe

Please sign in to comment.