diff options
| author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 11:38:25 +0000 | 
|---|---|---|
| committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-20 11:38:25 +0000 | 
| commit | 9caa09ee888d7884e22cc46089e6e0fb6579732c (patch) | |
| tree | 6ee22ea1104a337fce3a64d0b519073a4ffbabbd /views/atom/export/entity.php | |
| parent | 6258b38d2e274df93333ce36696bcbf49fb8ea2e (diff) | |
| download | elgg-9caa09ee888d7884e22cc46089e6e0fb6579732c.tar.gz elgg-9caa09ee888d7884e22cc46089e6e0fb6579732c.tar.bz2 | |
Marcus Povey <marcus@dushka.co.uk>
* Committed abortive Atom wrapper... we need to support different import/export
git-svn-id: https://code.elgg.org/elgg/trunk@657 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/atom/export/entity.php')
| -rw-r--r-- | views/atom/export/entity.php | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/views/atom/export/entity.php b/views/atom/export/entity.php new file mode 100644 index 000000000..c89a73fc4 --- /dev/null +++ b/views/atom/export/entity.php @@ -0,0 +1,17 @@ +<?php +	/** +	 * Elgg Entity export. +	 * Displays an entity as ODD over Atom +	 *  +	 * @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']; +	 +	echo export($entity->guid, new ODDAtomWrapperFactory()); +?>
\ No newline at end of file | 
