aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/export.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/export.php')
-rw-r--r--engine/lib/export.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/engine/lib/export.php b/engine/lib/export.php
index e819264f6..6e37d3b45 100644
--- a/engine/lib/export.php
+++ b/engine/lib/export.php
@@ -20,11 +20,17 @@
interface Exportable
{
/**
- * This must take the contents of the object and convert it to exportable class(es).
+ * This must take the contents of the object and convert it to exportable ODD
* @return object or array of objects.
*/
public function export();
+ /**
+ * Return a list of all fields that can be exported.
+ * This should be used as the basis for the values returned by export()
+ */
+ public function getExportableValues();
+
}
/**