title; $url = $entity->getURL(); if (isset($vars['href'])) { $url = $vars['href']; } $class = ''; if ($entity->thumbnail) { $class = 'class="elgg-photo"'; } $img_src = $entity->getIconURL($vars['size']); $img = "\"$title\""; if ($url) { echo elgg_view('output/url', array( 'href' => $url, 'text' => $img, )); } else { echo $img; }