aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/history.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-07-15 17:59:57 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-07-15 17:59:57 +0000
commitbcfbbf1b7cf2a0c96af1dfe55c919c09eceac916 (patch)
treee22653836d685eedbe81df5f4b1c118e6324c86d /mod/pages/history.php
parentff5846ea6cb4e5edc84c99c6eda7b37dccce8bf5 (diff)
downloadelgg-bcfbbf1b7cf2a0c96af1dfe55c919c09eceac916.tar.gz
elgg-bcfbbf1b7cf2a0c96af1dfe55c919c09eceac916.tar.bz2
First pass at standardizing pages.
git-svn-id: http://code.elgg.org/elgg/trunk@6716 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/pages/history.php')
-rw-r--r--mod/pages/history.php97
1 files changed, 46 insertions, 51 deletions
diff --git a/mod/pages/history.php b/mod/pages/history.php
index fec7702ba..c4e4c85fa 100644
--- a/mod/pages/history.php
+++ b/mod/pages/history.php
@@ -1,52 +1,47 @@
<?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");
- gatekeeper();
-
- $page_guid = get_input('page_guid');
-
- $pages = get_entity($page_guid);
- if ($pages->container_guid) {
- set_page_owner($pages->container_guid);
- } else {
- set_page_owner($pages->owner_guid);
- }
-
- if (is_callable('group_gatekeeper')) group_gatekeeper();
-
- $limit = (int)get_input('limit', 20);
- $offset = (int)get_input('offset');
-
- $page_guid = get_input('page_guid');
- $pages = get_entity($page_guid);
-
- add_submenu_item(sprintf(elgg_echo("pages:user"), page_owner_entity()->name), $CONFIG->url . "pg/pages/owned/" . page_owner_entity()->username, 'pageslinksgeneral');
-
- $title = $pages->title . ": " . elgg_echo("pages:history");
- $area2 = elgg_view_title($title);
-
- $context = get_context();
-
- set_context('search');
-
- $area2 .= list_annotations($page_guid, 'page', $limit, false);
-
- set_context($context);
-
-
- pages_set_navigation_parent($pages);
- $area3 = elgg_view('pages/sidebar/tree');
-
- $body = elgg_view_layout('one_column_with_sidebar', $area3, $area2);
-
- page_draw($title, $body);
-?>
+/**
+ * Elgg Pages
+ *
+ * @package ElggPages
+ * @link http://elgg.com/
+ */
+
+require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+gatekeeper();
+
+$page_guid = get_input('page_guid');
+
+$pages = get_entity($page_guid);
+if ($pages->container_guid) {
+ set_page_owner($pages->container_guid);
+} else {
+ set_page_owner($pages->owner_guid);
+}
+
+if (is_callable('group_gatekeeper')) group_gatekeeper();
+
+$limit = (int)get_input('limit', 20);
+$offset = (int)get_input('offset');
+
+$page_guid = get_input('page_guid');
+$pages = get_entity($page_guid);
+
+add_submenu_item(sprintf(elgg_echo("pages:user"), page_owner_entity()->name), $CONFIG->url . "pg/pages/owned/" . page_owner_entity()->username, 'pageslinksgeneral');
+
+$title = $pages->title . ": " . elgg_echo("pages:history");
+$area2 = elgg_view_title($title);
+
+$context = get_context();
+
+set_context('search');
+
+$area2 .= list_annotations($page_guid, 'page', $limit, false);
+
+set_context($context);
+
+pages_set_navigation_parent($pages);
+$area3 = elgg_view('pages/sidebar/tree');
+
+$body = elgg_view_layout('one_column_with_sidebar', $area3, $area2);
+
+page_draw($title, $body); \ No newline at end of file