aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/pages/index.php')
-rw-r--r--mod/pages/index.php58
1 files changed, 58 insertions, 0 deletions
diff --git a/mod/pages/index.php b/mod/pages/index.php
new file mode 100644
index 000000000..0e4601cef
--- /dev/null
+++ b/mod/pages/index.php
@@ -0,0 +1,58 @@
+<?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');
+ }
+
+ if (is_callable('group_gatekeeper')) 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, '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('two_column_left_sidebar', '', $body);
+
+ // Finally draw the page
+ page_draw($title, $body);
+?> \ No newline at end of file