diff options
Diffstat (limited to 'views/php/export/metadata.php')
-rw-r--r-- | views/php/export/metadata.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/php/export/metadata.php b/views/php/export/metadata.php new file mode 100644 index 000000000..4f5e9c333 --- /dev/null +++ b/views/php/export/metadata.php @@ -0,0 +1,16 @@ +<?php + /** + * Elgg metadata export. + * Displays a metadata item using PHP serialised data + * + * @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']; + echo serialize($m); +?>
\ No newline at end of file |