entity_guid); $icon = elgg_view("pages/icon", array( 'annotation' => $annotation, 'size' => 'small', )); $owner_guid = $annotation->owner_guid; $owner = get_entity($owner_guid); if (!$owner) { } $owner_link = elgg_view('output/url', array( 'href' => $owner->getURL(), 'text' => $owner->name, 'is_trusted' => true, )); $date = elgg_view_friendly_time($annotation->time_created); $title_link = elgg_view('output/url', array( 'href' => $annotation->getURL(), 'text' => $page->title, 'is_trusted' => true, )); $subtitle = elgg_echo('pages:revision:subtitle', array($date, $owner_link)); $body = <<< HTML

$title_link

$subtitle

HTML; if (!elgg_in_context('widgets')) { $menu = elgg_view_menu('annotation', array( 'annotation' => $annotation, 'sort_by' => 'priority', 'class' => 'elgg-menu-hz float-alt', )); } $body = << $menu

$title_link

$subtitle HTML; echo elgg_view_image_block($icon, $body);