summaryrefslogtreecommitdiff
path: root/actions/tag.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/tag.php')
-rw-r--r--actions/tag.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/actions/tag.php b/actions/tag.php
index 4401f892a..f71f6d342 100644
--- a/actions/tag.php
+++ b/actions/tag.php
@@ -69,6 +69,28 @@ class TagAction extends Action
'title' => sprintf(_('Feed for tag %s'), $this->tag)));
}
+ /**
+ * Output document relationship links
+ *
+ * @return void
+ */
+ function showRelationshipLinks()
+ {
+ // Machine-readable pagination
+ if ($this->page > 1) {
+ $this->element('link', array('rel' => 'next',
+ 'href' => common_local_url('tag',
+ array('tag' => $this->tag,
+ 'page' => $this->page - 1)),
+ 'title' => _('Next Notices')));
+ }
+ $this->element('link', array('rel' => 'prev',
+ 'href' => common_local_url('tag',
+ array('tag' => $this->tag,
+ 'page' => $this->page + 1)),
+ 'title' => _('Previous Notices')));
+ }
+
function showPageNotice()
{
return sprintf(_('Messages tagged "%s", most recent first'), $this->tag);