aboutsummaryrefslogtreecommitdiff
path: root/pages/world.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-08-22 15:10:42 +0000
committerCash Costello <cash.costello@gmail.com>2009-08-22 15:10:42 +0000
commit3c7ff4340f018d6b70cf8f2dd60de0250d3fcb66 (patch)
tree00aa120b631e00a3305d8e5b12db54332d95cada /pages/world.php
parent4546f4f1e55042cebc9c77c84a37974ff01c08ff (diff)
downloadelgg-3c7ff4340f018d6b70cf8f2dd60de0250d3fcb66.tar.gz
elgg-3c7ff4340f018d6b70cf8f2dd60de0250d3fcb66.tar.bz2
moved core pages to new pages structure
Diffstat (limited to 'pages/world.php')
-rw-r--r--pages/world.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/pages/world.php b/pages/world.php
new file mode 100644
index 000000000..1ed712ac9
--- /dev/null
+++ b/pages/world.php
@@ -0,0 +1,33 @@
+<?php
+ /**
+ * Tidypics View All Albums on Site
+ *
+ */
+
+ include_once dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php";
+
+ $limit = get_input("limit", 10);
+ $offset = get_input("offset", 0);
+ $tag = get_input("tag");
+
+ // Get the current page's owner
+ $page_owner = page_owner_entity();
+ if ($page_owner === false || is_null($page_owner)) {
+ $page_owner = $_SESSION['user'];
+ set_page_owner($_SESSION['guid']);
+ }
+
+ // Get objects
+ $area2 = elgg_view_title($title = elgg_echo('album:all'));
+
+ set_context('search');
+ set_input('search_viewtype', 'gallery');
+ $area2 .= list_entities('object','album', 0, 28);
+
+ set_context('photos');
+
+ $body = elgg_view_layout('two_column_left_sidebar', '', $area2);
+
+ // Finally draw the page
+ page_draw(sprintf(elgg_echo("album:all"),$_SESSION['user']->name), $body);
+?> \ No newline at end of file