diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-30 23:13:21 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-09-30 23:13:21 +0000 |
commit | 839dcba98a17b6d8b3fb63aec7744eda373ec5ff (patch) | |
tree | 22d47dfddc4ac3a1879efaa9f12d40876448c79b /pages | |
parent | 760992d750e10977362a58a59ba91abc30acb3ca (diff) | |
download | elgg-839dcba98a17b6d8b3fb63aec7744eda373ec5ff.tar.gz elgg-839dcba98a17b6d8b3fb63aec7744eda373ec5ff.tar.bz2 |
Refs #2344 - moves entities directory to pages directory
git-svn-id: http://code.elgg.org/elgg/trunk@6988 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'pages')
-rw-r--r-- | pages/entities/index.php | 60 | ||||
-rw-r--r-- | pages/entities/list.php | 19 |
2 files changed, 79 insertions, 0 deletions
diff --git a/pages/entities/index.php b/pages/entities/index.php new file mode 100644 index 000000000..68018bfff --- /dev/null +++ b/pages/entities/index.php @@ -0,0 +1,60 @@ +<?php +/** + * Generic entity viewer + * Given a GUID, this page will try and display any entity + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ + +// Load Elgg engine +require_once(dirname(dirname(__FILE__)) . "/engine/start.php"); + +// Get the GUID of the entity we want to view +$guid = (int) get_input('guid'); +$shell = get_input('shell'); +if ($shell == "no") { + $shell = false; +} else { + $shell = true; +} + +$context = get_input('context'); +if ($context) { + set_context($context); +} + +// Get the entity, if possible +if ($entity = get_entity($guid)) { + if ($entity->container_guid) { + set_page_owner($entity->container_guid); + } else { + set_page_owner($entity->owner_guid); + } + + // Set the body to be the full view of the entity, and the title to be its title + if ($entity instanceof ElggObject) { + $title = $entity->title; + } else if ($entity instanceof ElggEntity) { + $title = $entity->name; + } + $area1 = elgg_view_entity($entity,true); + if ($shell) { + $body = elgg_view_layout('one_column_with_sidebar', $area1); + } else { + $body = $area1; + } +} else { + $body = elgg_echo('notfound'); +} + +// Display the page +if ($shell) { + page_draw($title, $body); +} else { + header("Content-type: text/html; charset=UTF-8"); + echo $title; + echo $body; +}
\ No newline at end of file diff --git a/pages/entities/list.php b/pages/entities/list.php new file mode 100644 index 000000000..280336cef --- /dev/null +++ b/pages/entities/list.php @@ -0,0 +1,19 @@ +<?php +/** + * Entity viewer + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ + +require_once(dirname(dirname(__FILE__)) . "/engine/start.php"); + +set_context('search'); +$area2 = elgg_list_entities(); +set_context('entities'); + +$body = elgg_view_layout('two_column_left_sidebar', $area1, $area2); + +page_draw("", $body);
\ No newline at end of file |