aboutsummaryrefslogtreecommitdiff
path: root/views/opendd/export/entity.php
blob: aaaf6bb8da58ee4a3ed07ff38a412cd4c0e020f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * Elgg Entity export.
 * Displays an entity as ODD
 *
 * @package Elgg
 * @subpackage Core
 */

$entity = $vars['entity'];
$serialised = exportAsArray($vars['entity']->guid);
foreach ($serialised as $s) {
	echo $s;
}