summaryrefslogtreecommitdiff
path: root/actions/showfavorites.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/showfavorites.php')
-rw-r--r--actions/showfavorites.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/actions/showfavorites.php b/actions/showfavorites.php
index 31479e1a7..f0297172a 100644
--- a/actions/showfavorites.php
+++ b/actions/showfavorites.php
@@ -154,6 +154,28 @@ class ShowfavoritesAction extends Action
}
/**
+ * 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('showfavorites',
+ array('nickname' => $this->user->nickname,
+ 'page' => $this->page - 1)),
+ 'title' => _('Next Favorite Notices')));
+ }
+ $this->element('link', array('rel' => 'prev',
+ 'href' => common_local_url('showfavorites',
+ array('nickname' => $this->user->nickname,
+ 'page' => $this->page + 1)),
+ 'title' => _('Previous Favorite Notices')));
+ }
+
+ /**
* show the personal group nav
*
* @return void