diff options
Diffstat (limited to 'views/odd/export')
-rw-r--r-- | views/odd/export/entity.php | 19 | ||||
-rw-r--r-- | views/odd/export/metadata.php | 23 | ||||
-rw-r--r-- | views/odd/export/relationship.php | 22 |
3 files changed, 0 insertions, 64 deletions
diff --git a/views/odd/export/entity.php b/views/odd/export/entity.php deleted file mode 100644 index a147a707a..000000000 --- a/views/odd/export/entity.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - /** - * Elgg Entity export. - * Displays an entity as ODD - * - * @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']; - $serialised = exportAsArray($vars['entity']->guid); - foreach ($serialised as $s) - echo $s; - -?>
\ No newline at end of file diff --git a/views/odd/export/metadata.php b/views/odd/export/metadata.php deleted file mode 100644 index e6f74e2d2..000000000 --- a/views/odd/export/metadata.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - /** - * Elgg metadata export. - * Displays a metadata item using the current view. - * - * @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/ - */ - - $m = $vars['metadata']; - $uuid = $vars['uuid']; - - //$odd = new ODDDocument(); - //$odd->addElement($m->export()); - - //echo $odd; - - echo $m->export(); -?>
\ No newline at end of file diff --git a/views/odd/export/relationship.php b/views/odd/export/relationship.php deleted file mode 100644 index 28b3026d5..000000000 --- a/views/odd/export/relationship.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - /** - * Elgg relationship export. - * Displays a relationship using ODD. - * - * @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/ - */ - - $r = $vars['relationship']; - - //$odd = new ODDDocument(); - //$odd->addElement($r->export()); - - //echo $odd; - - echo $r->export(); -?>
\ No newline at end of file |