aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/annotations.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-25 14:52:36 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-25 14:52:36 +0000
commit0239951ce60d4f4bef878ea6ad9826152e4a4bf5 (patch)
treedd595ed57026150a8085cb3aaabf7db0d59447ae /engine/lib/annotations.php
parent2bbed4a0b456ac8ad649e4e02faf4af0e54caaba (diff)
downloadelgg-0239951ce60d4f4bef878ea6ad9826152e4a4bf5.tar.gz
elgg-0239951ce60d4f4bef878ea6ad9826152e4a4bf5.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* 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
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r--engine/lib/annotations.php17
1 files changed, 1 insertions, 16 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php
index 4302d27a6..5e59d2e88 100644
--- a/engine/lib/annotations.php
+++ b/engine/lib/annotations.php
@@ -26,7 +26,7 @@
* @subpackage Core
* @author Marcus Povey <marcus@dushka.co.uk>
*/
- class ElggAnnotation extends ElggExtender implements Exportable
+ class ElggAnnotation extends ElggExtender
{
/**
@@ -100,21 +100,6 @@
return delete_annotation($this->id);
}
- /**
- * Export this object
- *
- * @return array
- */
- public function export()
- {
- $type = "annotation";
- $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;
- }
}
/**