diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-07-31 19:22:47 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-07-31 19:22:47 +0000 |
commit | a1f08342c8b8502197159a9fd78e48e6cead4ea0 (patch) | |
tree | ea2e0c175ea7a9f4495b185162585e8d84bb8ed2 /views/default/object/image.php | |
parent | 28e545574f35f0d6349a395648a7857ee58989c9 (diff) | |
download | elgg-a1f08342c8b8502197159a9fd78e48e6cead4ea0.tar.gz elgg-a1f08342c8b8502197159a9fd78e48e6cead4ea0.tar.bz2 |
improved the upgrade system and moved albums to use an ordered list for images
Diffstat (limited to 'views/default/object/image.php')
-rw-r--r-- | views/default/object/image.php | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/views/default/object/image.php b/views/default/object/image.php index cd53120de..da3e257a1 100644 --- a/views/default/object/image.php +++ b/views/default/object/image.php @@ -94,32 +94,18 @@ if (get_context() == "search") { // Build back and next links $back = ''; $next = ''; - $album = get_entity($image->container_guid); + $back_guid = $album->getPreviousImageGuid($image->guid); + $next_guid = $album->getNextImageGuid($image->guid); - $current = array_search($image_guid, $_SESSION['image_sort']); - - if (!$current) { // means we are no longer using the correct album array - - //rebuild the array - $count = get_entities("object","image", $album->guid, '', 999); - $_SESSION['image_sort'] = array(); - - foreach ($count as $img) { - array_push($_SESSION['image_sort'], $img->guid); - } - - if ($_SESSION['image_sort']) { - $current = array_search($image_guid, $_SESSION['image_sort']); - } - } - - if ($current != 0) { - $back = '<a href="' .$vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current-1] . '">« ' . elgg_echo('image:back') . '</a>'; + if ($back_guid != 0) { + $text = elgg_echo('image:back'); + $back = "<a href=\"{$vars['url']}pg/photos/view/$back_guid\">« $text</a>"; } - if (sizeof($_SESSION['image_sort']) > $current + 1) { - $next = '<a href="' . $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] . '">' . elgg_echo('image:next') . ' »</a>'; + if ($next_guid != 0) { + $text = elgg_echo('image:next'); + $next = "<a href=\"{$vars['url']}pg/photos/view/$next_guid\">$text »</a>"; } ?> |