aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/Exportable.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/classes/Exportable.php')
-rw-r--r--engine/classes/Exportable.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/engine/classes/Exportable.php b/engine/classes/Exportable.php
index c8bc3bcd7..1adcd781e 100644
--- a/engine/classes/Exportable.php
+++ b/engine/classes/Exportable.php
@@ -2,12 +2,13 @@
/**
* Define an interface for all ODD exportable objects.
*
- * @package Elgg
- * @subpackage Core
+ * @package Elgg.Core
+ * @subpackage ODD
*/
interface Exportable {
/**
* This must take the contents of the object and convert it to exportable ODD
+ *
* @return object or array of objects.
*/
public function export();
@@ -15,6 +16,8 @@ interface Exportable {
/**
* Return a list of all fields that can be exported.
* This should be used as the basis for the values returned by export()
+ *
+ * @return array
*/
public function getExportableValues();
} \ No newline at end of file