coords . '}'); $attributes = elgg_format_attributes(array( 'class' => 'tidypics-tag', 'data-x1' => $coords->x1, 'data-y1' => $coords->y1, 'data-width' => $coords->width, 'data-height' => $coords->height, )); if ($vars['tag']->type == 'user') { $user = get_entity($vars['tag']->value); $label = elgg_view('output/url', array( 'text' => $user->name, 'href' => $user->getURL(), )); } else { $label = $vars['tag']->value; } $delete = ''; $annotation = elgg_get_annotation_from_id($vars['tag']->annotation_id); if ($annotation->canEdit()) { $url = elgg_http_add_url_query_elements('action/photos/image/untag', array( 'annotation_id' => $vars['tag']->annotation_id )); $delete = elgg_view('output/confirmlink', array( 'href' => $url, 'text' => elgg_view_icon('delete', 'float mas'), 'confirm' => elgg_echo('tidypics:phototagging:delete:confirm') )); } echo <<
$delete
$label
HTML;