diff options
Diffstat (limited to 'mod/pages/index.php')
-rw-r--r-- | mod/pages/index.php | 107 |
1 files changed, 51 insertions, 56 deletions
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 @@ <?php - /** - * Elgg Pages - * - * @package ElggPages - * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 - * @author Curverider Ltd - * @copyright Curverider Ltd 2008-2010 - * @link http://elgg.com/ - */ - - 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'); - } - - // 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); |