diff options
Diffstat (limited to 'engine/classes/ElggEntity.php')
-rw-r--r-- | engine/classes/ElggEntity.php | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php index 56ac96f8f..9b6b04899 100644 --- a/engine/classes/ElggEntity.php +++ b/engine/classes/ElggEntity.php @@ -30,8 +30,7 @@ abstract class ElggEntity extends ElggData implements Notable, // Calendar interface Locatable, // Geocoding interface Exportable, // Allow export of data - Importable, // Allow import of data - Loggable // Can events related to this object class be logged + Importable // Allow import of data { /** @@ -1303,15 +1302,6 @@ abstract class ElggEntity extends ElggData implements } /** - * Return the class name of the object. - * - * @return string - */ - public function getClassName() { - return get_class($this); - } - - /** * For a given ID, return the object associated with it. * This is used by the river functionality primarily. * @@ -1329,15 +1319,6 @@ abstract class ElggEntity extends ElggData implements } /** - * Returns the GUID of the owner of this entity. - * - * @return int Owner guid - */ - public function getObjectOwnerGUID() { - return $this->owner_guid; - } - - /** * Returns tags for this entity. * * @warning Tags must be registered by {@link elgg_register_tag_metadata_name()}. |