From 0239951ce60d4f4bef878ea6ad9826152e4a4bf5 Mon Sep 17 00:00:00 2001 From: icewing Date: Fri, 25 Apr 2008 14:52:36 +0000 Subject: Marcus Povey * Using common attribute type var to determine ODD export type for uuid generation, now attributes can support a uuid git-svn-id: https://code.elgg.org/elgg/trunk@529 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/extender.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'engine/lib/extender.php') diff --git a/engine/lib/extender.php b/engine/lib/extender.php index 88542a494..9762526aa 100644 --- a/engine/lib/extender.php +++ b/engine/lib/extender.php @@ -18,7 +18,7 @@ * @package Elgg * @subpackage Core */ - abstract class ElggExtender + abstract class ElggExtender implements Exportable { /** * This contains the site's main properties (id, etc) @@ -100,6 +100,21 @@ return can_edit_extender($this->id,$this->type,$user_guid); } + /** + * Export this object + * + * @return array + */ + public function export() + { + $type = $this->attributes['type']; + $uuid = guid_to_uuid($this->entity_guid). $type . "/{$this->id}/"; + + $meta = new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes[$name], $this->attributes['value'], $type, guid_to_uuid($this->owner_guid)); + $meta->setAttribute('published', date("r", $this->time_created)); + + return $meta; + } } /** -- cgit v1.2.3