diff options
Diffstat (limited to 'mod/pages/views/default/annotation/page.php')
-rw-r--r-- | mod/pages/views/default/annotation/page.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/mod/pages/views/default/annotation/page.php b/mod/pages/views/default/annotation/page.php new file mode 100644 index 000000000..a621b9281 --- /dev/null +++ b/mod/pages/views/default/annotation/page.php @@ -0,0 +1,42 @@ +<?php +/** + * Revision view for history page + * + * @package ElggPages + */ + +$annotation = $vars['annotation']; +$page = get_entity($annotation->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 +<h3>$title_link</h3> +<p class="elgg-subtext">$subtitle</p> +HTML; + +echo elgg_view_image_block($icon, $body);
\ No newline at end of file |