getGUID(); $tags = $file->tags; $title = $file->title; $desc = $file->description; $owner = $vars['entity']->getOwnerEntity(); $friendlytime = friendly_time($vars['entity']->time_created); $mime = $file->mimetype; if (get_context() == "search") { //if this is the search view if (get_input('search_viewtype') == "gallery") { ?>
thumbnail
'.$title.'

'; $info .= "

username}\">{$owner->name} {$friendlytime}"; $numcomments = elgg_count_comments($file); if ($numcomments) $info .= ", getURL()}\">" . sprintf(elgg_echo("comments")) . " (" . $numcomments . ")"; $info .= "

"; $icon = "getURL()}\">" . elgg_view("tidypics/icon", array("mimetype" => $mime, 'thumbnail' => $file->thumbnail, 'file_guid' => $file_guid, 'size' => 'small')) . ""; echo elgg_view_listing($icon, $info); } } else { //tidypics image display if (!$vars['full']) { //simple gallery view ?>
thumbnail
'; $album = get_entity($file->container_guid); //compile back | next links $current = array_search($file_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); } $current = array_search($file_guid, $_SESSION['image_sort']); } if (!$current == 0) $back = '<<' . elgg_echo('image:back') . '  '; if (array_key_exists(($current+1), $_SESSION['image_sort'])) $next = '  ' . elgg_echo('image:next') . '>>'; ?> ' . autop($desc) . ''; echo '
'; echo '
' . $back . $next . '
'; if ($next) echo ''; echo '' . $title . ''; if ($next) echo ''; echo '
'; ?>

$tags));?>
name; ?>
'; } } // end of tidypics image display ?>