getGUID(); $tags = $image->tags; $title = $image->title; $desc = $image->description; $owner = $image->getOwnerEntity(); $friendlytime = friendly_time($image->time_created); $mime = $image->mimetype; /******************************************************************** * * search view of an image * ********************************************************************/ if (get_context() == "search") { if (get_input('search_viewtype') == "gallery") { ?>
'.$title.''; $info .= " "; $icon = "getURL()}\">" . '"; var_dump($owner); echo ""; foreach($views_a as $view) { if($view->owner_guid == $the_viewer && $the_viewer != 0) $my_views++; if($owner->guid == $view->owner_guid) $owner_views++; //count how many different people have viewed it if($owner->guid != $view->owner_guid) $diff_viewers[$view->owner_guid] = 1; } //remove the owner's views from the total count (prevents artificially inflated view counts) $views = $views - $owner_views; } // Build back and next links $back = ''; $next = ''; $album = get_entity($image->container_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 $image) { array_push($_SESSION['image_sort'], $image->guid); } if ($_SESSION['image_sort']) $current = array_search($image_guid, $_SESSION['image_sort']); } if ($current != 0) $back = '« ' . elgg_echo('image:back') . ''; if (sizeof($_SESSION['image_sort']) > $current + 1) $next = '' . elgg_echo('image:next') . ' »'; ?>