aboutsummaryrefslogtreecommitdiff
path: root/viewimage.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-03-21 17:53:07 +0000
committerCash Costello <cash.costello@gmail.com>2009-03-21 17:53:07 +0000
commit26be16aaf2189a4b50b06494aab6c6690480a371 (patch)
treee9f8fc7030fbfd3f356278336629956daf669e47 /viewimage.php
parent9cd649361936640a11c249443c6c8f4e00f2399d (diff)
downloadelgg-26be16aaf2189a4b50b06494aab6c6690480a371.tar.gz
elgg-26be16aaf2189a4b50b06494aab6c6690480a371.tar.bz2
finished updating display of single image
Diffstat (limited to 'viewimage.php')
-rw-r--r--viewimage.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/viewimage.php b/viewimage.php
new file mode 100644
index 000000000..85e8d8215
--- /dev/null
+++ b/viewimage.php
@@ -0,0 +1,42 @@
+<?php
+
+ /**
+ * Tidypics full view of an image
+ * Given a GUID, this page will try and display any entity
+ *
+ */
+
+ // 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');
+ }
+
+ $body = elgg_view_layout('two_column_left_sidebar', '', $area2);
+
+ // Display the page
+ page_draw($title, $body);
+?> \ No newline at end of file