diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 23:59:40 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 23:59:40 +0000 |
commit | 368cc50361cfe6a4fc3d8eec976ce67e080a55b4 (patch) | |
tree | b2aa7c00bf4e6d542ca4ecba4c5017892582bea7 /engine/classes/ElggEntity.php | |
parent | 09f229f4664ed51dfd06d545db2f32bca3b9acf2 (diff) | |
download | elgg-368cc50361cfe6a4fc3d8eec976ce67e080a55b4.tar.gz elgg-368cc50361cfe6a4fc3d8eec976ce67e080a55b4.tar.bz2 |
Refs #2597: pulled getOwner and getOwnerEntity functions into ElggData
I thought this would be OK even though relationships don't technically have owners because ElggRelationship implemented the getObectOwnerGUID method
git-svn-id: http://code.elgg.org/elgg/trunk@7156 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes/ElggEntity.php')
-rw-r--r-- | engine/classes/ElggEntity.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php index 9b6b04899..5d0e030fc 100644 --- a/engine/classes/ElggEntity.php +++ b/engine/classes/ElggEntity.php @@ -731,24 +731,6 @@ abstract class ElggEntity extends ElggData implements } /** - * Return the guid of the entity's owner. - * - * @return int The owner GUID - */ - public function getOwner() { - return $this->get('owner_guid'); - } - - /** - * Returns the ElggEntity or child object of the owner of the entity. - * - * @return ElggEntity The owning user - */ - public function getOwnerEntity() { - return get_entity($this->get('owner_guid')); - } - - /** * Returns the entity type * * @return string Entity type |