From 7c8bad89d27b18668622db2a36752653d3f3789c Mon Sep 17 00:00:00 2001 From: ewinslow Date: Sun, 31 Oct 2010 00:33:58 +0000 Subject: Improved initializeAttributes implementations git-svn-id: http://code.elgg.org/elgg/trunk@7159 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/classes/ElggData.php | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'engine/classes/ElggData.php') diff --git a/engine/classes/ElggData.php b/engine/classes/ElggData.php index fbc11881a..e465913ef 100644 --- a/engine/classes/ElggData.php +++ b/engine/classes/ElggData.php @@ -15,8 +15,20 @@ abstract class ElggData implements */ protected $attributes = array(); + /** + * Initialize the attributes array. + * + * This is vital to distinguish between metadata and base parameters. + * + * @return void + */ protected function initializeAttributes() { - $this->attributes['time_created'] = time(); + // Create attributes array if not already created + if (!is_array($this->attributes)) { + $this->attributes = array(); + } + + $this->attributes['time_created'] = ''; } /** @@ -26,6 +38,20 @@ abstract class ElggData implements */ abstract public function getURL(); + /** + * Save this data to the appropriate database table. + * + * @return bool + */ + abstract public function save(); + + /** + * Delete this data. + * + * @return bool + */ + abstract public function delete(); + /** * Return the guid of the entity's owner. * -- cgit v1.2.3