forked from GNUsocial/gnu-social
Beginning to refactor document relationship links to reduce common code.
My attempts here are to mimic the `pagination()` method shared by actions. I'm tentatively adding the `$count` property to actions so that we can query the number of notices ''being displayed'' per page prior to calling the actual `pagination()` method itself, since document relationship `<link>` elements need to be output inside of `showHead()`, before `showContent()`, which is where `pagination()` is, gets called.
This commit is contained in:
@@ -70,19 +70,8 @@ class InboxAction extends MailboxAction
|
||||
*/
|
||||
function showRelationshipLinks()
|
||||
{
|
||||
// Machine-readable pagination
|
||||
if ($this->page > 1) {
|
||||
$this->element('link', array('rel' => 'next',
|
||||
'href' => common_local_url('inbox',
|
||||
array('nickname' => $this->user->nickname,
|
||||
'page' => $this->page - 1)),
|
||||
'title' => _('Next Messages')));
|
||||
}
|
||||
$this->element('link', array('rel' => 'prev',
|
||||
'href' => common_local_url('inbox',
|
||||
array('nickname' => $this->user->nickname,
|
||||
'page' => $this->page + 1)),
|
||||
'title' => _('Previous Messages')));
|
||||
$this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
|
||||
$this->page, 'inbox', array('nickname' => $this->user->nickname));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user