diff options
Diffstat (limited to 'mod/pages/index.php')
| -rw-r--r-- | mod/pages/index.php | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/mod/pages/index.php b/mod/pages/index.php deleted file mode 100644 index e3d440692..000000000 --- a/mod/pages/index.php +++ /dev/null @@ -1,50 +0,0 @@ -<?php -/** - * Elgg Pages list - * - * @package ElggPages - */ - -require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - -global $CONFIG; - -// Add menus -$owner = elgg_get_page_owner(); -if (!($owner instanceof ElggGroup)) { - add_submenu_item(sprintf(elgg_echo("pages:user"), elgg_get_page_owner()->name), "pg/pages/owned/" . elgg_get_page_owner()->username, 'pageslinksgeneral'); - add_submenu_item(elgg_echo('pages:all'), "mod/pages/world.php", 'pageslinksgeneral'); -} - if (($owner instanceof ElggEntity) && (can_write_to_container(0,$owner->guid))){ - add_submenu_item(elgg_echo('pages:new'), "pg/pages/new/?container_guid=" . elgg_get_page_owner_guid(), 'pagesactions'); - add_submenu_item(elgg_echo('pages:welcome'), "pg/pages/welcome/" . $owner->username, 'pagesactions'); - } - -// access check for closed groups -group_gatekeeper(); - -$limit = get_input("limit", 10); -$offset = get_input("offset", 0); - -if($owner instanceof ElggGroup){ - $title = sprintf(elgg_echo("pages:group"),$owner->name); -}else{ - $title = sprintf(elgg_echo("pages:user"),$owner->name); -} - - -// Get objects -elgg_push_context('search'); -$objects = elgg_list_entities(array('types' => 'object', 'subtypes' => 'page_top', 'container_guid' => elgg_get_page_owner_guid(), 'limit' => $limit, 'offset' => $offset, 'full_view' => FALSE)); -elgg_pop_context(); - -//get the owners latest welcome message -$welcome_message = elgg_get_entities(array('types' => 'object', 'subtypes' => 'pages_welcome', 'container_guid' => $owner->guid, 'limit' => 1)); - -$body = elgg_view_title($title); -$body .= elgg_view("pages/welcome", array('entity' => $welcome_message)); -$body .= $objects; -$body = elgg_view_layout('one_column_with_sidebar', $body); - -// Finally draw the page -echo elgg_view_page($title, $body); |
