getGUID(); $tags = $image->tags; $title = $image->getTitle(); $desc = $image->description; $owner = $image->getOwnerEntity(); $friendlytime = friendly_time($image->time_created); /******************************************************************** * * search view of an image * ********************************************************************/ if (get_context() == "search") { // gallery view is a matrix view showing just the image - size: small if (get_input('search_viewtype') == "gallery") { ?>
thumbnail
'.$title.'

'; $info .= "

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

"; $icon = "getURL()}\">" . '' . $title . ''; echo elgg_view_listing($icon, $info); } /*************************************************************** * * front page view * ****************************************************************/ } else if (get_context() == "front" || get_context() == "widget") { // the front page view is a clickable thumbnail of the image ?> <?php echo $title; ?> $image), $image_html); if ($image_html) { echo $image_html; } else { // default link to image if no one overrides ?>
<?php echo $image->title; ?>
container_guid); $back_guid = $album->getPreviousImageGuid($image->guid); $next_guid = $album->getNextImageGuid($image->guid); if ($back_guid != 0) { $text = elgg_echo('image:back'); $back = "« $text"; } if ($next_guid != 0) { $text = elgg_echo('image:next'); $next = "$text »"; } ?>
$album,) ); ?>
addView($viewer->guid); $views = $image->getViews($viewer->guid); if (is_array($views)) { echo sprintf(elgg_echo("tidypics:views"), $views['total']); if ($owner->guid == $viewer->guid) { echo ' ' . sprintf(elgg_echo("tidypics:viewsbyowner"), $views['unique']); } else { if ($views['mine']) { echo ' ' . sprintf(elgg_echo("tidypics:viewsbyothers"), $views['mine']); } } } } ?>
"; $image_html .= "\"{$title}\""; $image_html .= ""; } else { $image_html = "\"{$title}\""; } // does any plugin want to override the link $image_html = trigger_plugin_hook('tp_thumbnail_link', 'image', array('image' => $image), $image_html); echo $image_html; ?>
$image_guid)); } ?>
$tags));?>
$vars['entity'])); ?>
name; ?>
'; echo ''; // content wrapper } // end of individual image display }