aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/ElggData.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-31 00:14:47 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-31 00:14:47 +0000
commit5982c2ade2cec6302245ddb6897a6b66d9c48547 (patch)
treea7bc541c03aca31a83d31fe1cafee5d253eea34d /engine/classes/ElggData.php
parent368cc50361cfe6a4fc3d8eec976ce67e080a55b4 (diff)
downloadelgg-5982c2ade2cec6302245ddb6897a6b66d9c48547.tar.gz
elgg-5982c2ade2cec6302245ddb6897a6b66d9c48547.tar.bz2
Refs #2597: Added getURL(), getTimeCreated(), and initializeAttributes() to {{{ElggData}}}
git-svn-id: http://code.elgg.org/elgg/trunk@7157 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes/ElggData.php')
-rw-r--r--engine/classes/ElggData.php43
1 files changed, 32 insertions, 11 deletions
diff --git a/engine/classes/ElggData.php b/engine/classes/ElggData.php
index b21646df1..fbc11881a 100644
--- a/engine/classes/ElggData.php
+++ b/engine/classes/ElggData.php
@@ -4,6 +4,28 @@ abstract class ElggData implements
Iterator, // Override foreach behaviour
ArrayAccess // Override for array access
{
+
+ /**
+ * The main attributes of an entity.
+ * Holds attributes to save to database
+ * This contains the site's main properties (id, etc)
+ * Blank entries for all database fields should be created by the constructor.
+ * Subclasses should add to this in their constructors.
+ * Any field not appearing in this will be viewed as a
+ */
+ protected $attributes = array();
+
+ protected function initializeAttributes() {
+ $this->attributes['time_created'] = time();
+ }
+
+ /**
+ * Get a URL for this object
+ *
+ * @return string
+ */
+ abstract public function getURL();
+
/**
* Return the guid of the entity's owner.
*
@@ -19,7 +41,16 @@ abstract class ElggData implements
* @return ElggEntity The owning user
*/
public function getOwnerEntity() {
- return get_entity($this->getOwner());
+ return get_entity($this->owner_guid);
+ }
+
+ /**
+ * Returns the UNIX epoch time that this entity was created
+ *
+ * @return int UNIX epoch time
+ */
+ public function getTimeCreated() {
+ return $this->time_created;
}
/*
@@ -44,16 +75,6 @@ abstract class ElggData implements
return $this->owner_guid;
}
- /**
- * The main attributes of an entity.
- * Holds attributes to save to database
- * This contains the site's main properties (id, etc)
- * Blank entries for all database fields should be created by the constructor.
- * Subclasses should add to this in their constructors.
- * Any field not appearing in this will be viewed as a
- */
- protected $attributes;
-
/*
* ITERATOR INTERFACE
*/