diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 09:53:19 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 09:53:19 +0000 |
commit | 85b94b0c3c9360bd8cf0aa8f9ba69a821d36f14b (patch) | |
tree | 55f89100b8b7bd576a0b92e8c0b895e09a95b7f5 /mod/opendd/viewuuid.php | |
parent | 57153e4292a1b9c2f4f840f3027d4c5c7b06b719 (diff) | |
download | elgg-85b94b0c3c9360bd8cf0aa8f9ba69a821d36f14b.tar.gz elgg-85b94b0c3c9360bd8cf0aa8f9ba69a821d36f14b.tar.bz2 |
Moved OpenDD out of the central repo.
git-svn-id: https://code.elgg.org/elgg/trunk@1590 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/opendd/viewuuid.php')
-rw-r--r-- | mod/opendd/viewuuid.php | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/mod/opendd/viewuuid.php b/mod/opendd/viewuuid.php deleted file mode 100644 index fdda2434a..000000000 --- a/mod/opendd/viewuuid.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - /** - * Elgg OpenDD aggregator - * - * @package ElggOpenDD - * @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.com/ - */ - - require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - - // The uuid to retrieve - $uuid = get_input('uuid'); - - // Fetch the UUID as an object - $odd = opendd_fetch_uuid($uuid); - - $body = elgg_view_title($uuid); - foreach ($odd as $o) - { - if ($o instanceof ODDMetaData) - { - if (($o->getAttribute('name') == 'renderedentity') && ($o->getAttribute('type')=='volatile')) - $body .= $o->getBody(); - } - } - - if ($body=="") - { - $entity = opendd_odd_to_elgg($odd); - $body .= elgg_view_entity($entity, true); - } - - $body = elgg_view_layout('one_column',$body); - - // Finally draw the page - page_draw($uuid, $body); -?>
\ No newline at end of file |