aboutsummaryrefslogtreecommitdiff
path: root/views/php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-11-19 21:16:49 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-11-19 21:16:49 +0000
commitbab90941c9faea31651bb8b562ddec6b5a82292c (patch)
treeeaeb02df929678fa1192ad4a22e14c5f733c7ab6 /views/php
parentf8b8e83d2210d3d6601e61b291df38a078a95093 (diff)
downloadelgg-bab90941c9faea31651bb8b562ddec6b5a82292c.tar.gz
elgg-bab90941c9faea31651bb8b562ddec6b5a82292c.tar.bz2
Fixes #568: Exportable code now inclusive not exclusive.
* Added extra function Exportable interface * OpenDD export modified * PHP & JSON export views modified * Default export view will still show all data if you are logged in as admin (since this view is used by the guidtool) git-svn-id: https://code.elgg.org/elgg/trunk@2467 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/php')
-rw-r--r--views/php/export/entity.php9
-rw-r--r--views/php/export/metadata.php9
-rw-r--r--views/php/export/relationship.php9
3 files changed, 24 insertions, 3 deletions
diff --git a/views/php/export/entity.php b/views/php/export/entity.php
index fbde3ef0d..d167a1df3 100644
--- a/views/php/export/entity.php
+++ b/views/php/export/entity.php
@@ -12,5 +12,12 @@
*/
$entity = $vars['entity'];
- echo serialize($entity);
+
+ $export = new stdClass;
+ $exportable_values = $entity->getExportableValues();
+
+ foreach ($exportable_values as $v)
+ $export->$v = $entity->$v;
+
+ echo serialize($export);
?> \ No newline at end of file
diff --git a/views/php/export/metadata.php b/views/php/export/metadata.php
index 1af6f065d..d7939bb82 100644
--- a/views/php/export/metadata.php
+++ b/views/php/export/metadata.php
@@ -12,5 +12,12 @@
*/
$m = $vars['metadata'];
- echo serialize($m);
+
+ $export = new stdClass;
+ $exportable_values = $m->getExportableValues();
+
+ foreach ($exportable_values as $v)
+ $export->$v = $m->$v;
+
+ echo serialize($export);
?> \ No newline at end of file
diff --git a/views/php/export/relationship.php b/views/php/export/relationship.php
index e66719f7c..58456c51c 100644
--- a/views/php/export/relationship.php
+++ b/views/php/export/relationship.php
@@ -12,5 +12,12 @@
*/
$r = $vars['relationship'];
- echo serialize($r);
+
+ $export = new stdClass;
+ $exportable_values = $r->getExportableValues();
+
+ foreach ($exportable_values as $v)
+ $export->$v = $r->$v;
+
+ echo serialize($export);
?> \ No newline at end of file