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