aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/objects.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/objects.php')
-rw-r--r--engine/lib/objects.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/engine/lib/objects.php b/engine/lib/objects.php
index 0bbcf1bb9..b9643bc87 100644
--- a/engine/lib/objects.php
+++ b/engine/lib/objects.php
@@ -202,7 +202,19 @@
* @return unknown
*/
//public function getCollections($subtype="", $limit = 10, $offset = 0) { get_object_collections($this->getGUID(), $subtype, $limit, $offset); }
-
+
+ // EXPORTABLE INTERFACE ////////////////////////////////////////////////////////////
+
+ /**
+ * Return an array of fields which can be exported.
+ */
+ public function getExportableValues()
+ {
+ return array_merge(parent::getExportableValues(), array(
+ 'title',
+ 'description',
+ ));
+ }
}
/**