aboutsummaryrefslogtreecommitdiff
path: root/viewimage.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-03-28 03:34:25 +0000
committerCash Costello <cash.costello@gmail.com>2009-03-28 03:34:25 +0000
commit5107faa7e96efd940ce28da9f46508298759c189 (patch)
treef3b241177607f27e05a8c1cb00900066100af280 /viewimage.php
parente0eebd803e76bae0d7aa6456427667c90b4e2368 (diff)
downloadelgg-5107faa7e96efd940ce28da9f46508298759c189.tar.gz
elgg-5107faa7e96efd940ce28da9f46508298759c189.tar.bz2
Diffstat (limited to 'viewimage.php')
-rw-r--r--viewimage.php53
1 files changed, 27 insertions, 26 deletions
diff --git a/viewimage.php b/viewimage.php
index 85e8d8215..8231bef3d 100644
--- a/viewimage.php
+++ b/viewimage.php
@@ -9,34 +9,35 @@
// Load Elgg engine
include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
- // Get the GUID of the entity we want to view
- $guid = (int) get_input('guid');
-
- $context = get_input('context');
- if ($context) set_context($context);
-
- // Get the entity, if possible
- if ($entity = get_entity($guid)) {
-
- //set "real" container - image container is the album , group/user is the album container
- $top_container = get_entity($entity->container_guid)->container_guid;
-
- if ($top_container) {
- set_page_owner($top_container);
- } else {
- set_page_owner($entity->owner_guid);
- }
-
- $title = $entity->title;
- $area2 = elgg_view_title($title);
- $area2 .= elgg_view_entity($entity, true);
-
- } else {
- $body = elgg_echo('notfound');
+ // 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();
+
+ // container of photo should always be set, but just in case
+ 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);
}
-
+
+ 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);
- // Display the page
page_draw($title, $body);
?> \ No newline at end of file