diff options
Diffstat (limited to 'engine/lib/group.php')
-rw-r--r-- | engine/lib/group.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/engine/lib/group.php b/engine/lib/group.php index 0a218b6f1..31c0460b6 100644 --- a/engine/lib/group.php +++ b/engine/lib/group.php @@ -311,6 +311,19 @@ // Now save specific stuff return create_group_entity($this->get('guid'), $this->get('name'), $this->get('description')); } + + // EXPORTABLE INTERFACE //////////////////////////////////////////////////////////// + + /** + * Return an array of fields which can be exported. + */ + public function getExportableValues() + { + return array_merge(parent::getExportableValues(), array( + 'name', + 'description', + )); + } } /** |