diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-22 15:10:42 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-22 15:10:42 +0000 |
commit | 3c7ff4340f018d6b70cf8f2dd60de0250d3fcb66 (patch) | |
tree | 00aa120b631e00a3305d8e5b12db54332d95cada /pages/viewimage.php | |
parent | 4546f4f1e55042cebc9c77c84a37974ff01c08ff (diff) | |
download | elgg-3c7ff4340f018d6b70cf8f2dd60de0250d3fcb66.tar.gz elgg-3c7ff4340f018d6b70cf8f2dd60de0250d3fcb66.tar.bz2 |
moved core pages to new pages structure
Diffstat (limited to 'pages/viewimage.php')
-rw-r--r-- | pages/viewimage.php | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/pages/viewimage.php b/pages/viewimage.php new file mode 100644 index 000000000..5caccdf06 --- /dev/null +++ b/pages/viewimage.php @@ -0,0 +1,56 @@ +<?php
+
+ /**
+ * Tidypics image view
+ *
+ * Display a view of a single image
+ */
+
+ // Load Elgg engine
+ include_once dirname(dirname(dirname(dirname(__FILE__)))) . "/engine/start.php";
+
+ // if this page belongs to a closed group, prevent anyone outside group from seeing
+ if (is_callable('group_gatekeeper')) group_gatekeeper();
+
+ // get the album entity
+ $photo_guid = (int) get_input('guid');
+ $photo = get_entity($photo_guid);
+
+ // panic if we can't get it
+ if (!$photo) forward();
+
+ // set page owner based on owner of photo album
+ set_page_owner($photo->owner_guid);
+ $album = get_entity($photo->container_guid);
+ if ($album) {
+ $owner_guid = $album->container_guid;
+ if ($owner_guid)
+ set_page_owner($owner_guid);
+ }
+
+
+ $page_owner = page_owner_entity();
+ if ($page_owner instanceof ElggGroup) {
+ add_submenu_item( sprintf(elgg_echo('album:group'),$page_owner->name),
+ $CONFIG->wwwroot . "pg/photos/owned/" . $page_owner->username);
+ }
+
+ if (can_write_to_container(0, $album->container_guid)) {
+ add_submenu_item( elgg_echo('image:edit'),
+ $CONFIG->wwwroot . 'pg/photos/edit/' . $photo_guid,
+ 'photos');
+ add_submenu_item( elgg_echo('image:delete'),
+ $CONFIG->wwwroot . 'pg/photos/delete/' . $photo_guid,
+ 'photos',
+ true);
+ }
+
+
+ $title = $photo->title;
+ $area2 = elgg_view_title($title);
+ $area2 .= elgg_view_entity($photo, true);
+
+ $body = elgg_view_layout('two_column_left_sidebar', '', $area2);
+
+ page_draw($title, $body);
+?>
\ No newline at end of file |