From bcfbbf1b7cf2a0c96af1dfe55c919c09eceac916 Mon Sep 17 00:00:00 2001 From: brettp Date: Thu, 15 Jul 2010 17:59:57 +0000 Subject: First pass at standardizing pages. git-svn-id: http://code.elgg.org/elgg/trunk@6716 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/pages/index.php | 107 +++++++++++++++++++++++++--------------------------- 1 file changed, 51 insertions(+), 56 deletions(-) (limited to 'mod/pages/index.php') diff --git a/mod/pages/index.php b/mod/pages/index.php index 6c1487c81..93e3428d5 100644 --- a/mod/pages/index.php +++ b/mod/pages/index.php @@ -1,59 +1,54 @@ name), $CONFIG->url . "pg/pages/owned/" . page_owner_entity()->username, 'pageslinksgeneral'); - add_submenu_item(elgg_echo('pages:all'),$CONFIG->wwwroot."mod/pages/world.php", 'pageslinksgeneral'); - } - if (($owner instanceof ElggEntity) && (can_write_to_container(0,$owner->guid))){ - add_submenu_item(elgg_echo('pages:new'), $CONFIG->url . "pg/pages/new/?container_guid=" . page_owner(), 'pagesactions'); - if ($owner instanceof ElggUser) add_submenu_item(elgg_echo('pages:welcome'), $CONFIG->url . "pg/pages/welcome/", '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); +/** + * Elgg Pages list + * + * @package ElggPages + */ + +require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + +global $CONFIG; + +// Add menus +$owner = page_owner_entity(); +if (!($owner instanceof ElggGroup)) { + add_submenu_item(sprintf(elgg_echo("pages:user"), page_owner_entity()->name), $CONFIG->url . "pg/pages/owned/" . page_owner_entity()->username, 'pageslinksgeneral'); + add_submenu_item(elgg_echo('pages:all'),$CONFIG->wwwroot."mod/pages/world.php", 'pageslinksgeneral'); +} + if (($owner instanceof ElggEntity) && (can_write_to_container(0,$owner->guid))){ + add_submenu_item(elgg_echo('pages:new'), $CONFIG->url . "pg/pages/new/?container_guid=" . page_owner(), 'pagesactions'); + if ($owner instanceof ElggUser) add_submenu_item(elgg_echo('pages:welcome'), $CONFIG->url . "pg/pages/welcome/", 'pagesactions'); } - - // Get objects - $context = get_context(); - - set_context('search'); - - $objects = elgg_list_entities(array('types' => 'object', 'subtypes' => 'page_top', 'container_guid' => page_owner(), 'limit' => $limit, 'offset' => $offset, 'full_view' => FALSE)); - - set_context($context); - - //get the owners latest welcome message - $welcome_message = elgg_get_entities(array('types' => 'object', 'subtypes' => 'pages_welcome', 'owner_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 - page_draw($title, $body); -?> +// 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 +$context = get_context(); + +set_context('search'); + +$objects = elgg_list_entities(array('types' => 'object', 'subtypes' => 'page_top', 'container_guid' => page_owner(), 'limit' => $limit, 'offset' => $offset, 'full_view' => FALSE)); + +set_context($context); + +//get the owners latest welcome message +$welcome_message = elgg_get_entities(array('types' => 'object', 'subtypes' => 'pages_welcome', 'owner_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 +page_draw($title, $body); -- cgit v1.2.3