aboutsummaryrefslogtreecommitdiff
path: root/views/json/export/entity.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/json/export/entity.php')
-rw-r--r--views/json/export/entity.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/views/json/export/entity.php b/views/json/export/entity.php
new file mode 100644
index 000000000..cf7e19c05
--- /dev/null
+++ b/views/json/export/entity.php
@@ -0,0 +1,22 @@
+<?php
+ /**
+ * Elgg Entity export.
+ * Displays an entity as JSON
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ $entity = $vars['entity'];
+
+ $export = new stdClass;
+
+ foreach ($entity as $k => $v)
+ $export->$k = $v;
+
+ echo json_encode($export);
+?> \ No newline at end of file