Skip to content

Instantly share code, notes, and snippets.

@ytkhs
Last active December 11, 2015 17:38
Show Gist options
  • Select an option

  • Save ytkhs/4635453 to your computer and use it in GitHub Desktop.

Select an option

Save ytkhs/4635453 to your computer and use it in GitHub Desktop.
cakephp 2.3+ pagination like twitter bootstrap
<div class="pagination pagination-centered">
<ul>
<?php
echo $this->Paginator->prev(
'前へ',
array(
'tag' => 'li',
'disabledTag' => 'a'
),
null,
array(
'tag' => 'li',
'disabledTag' => 'a',
'class' => 'disabled'
)
);
echo $this->Paginator->numbers(
array(
'separator' => null,
'tag' => 'li',
'currentClass' => 'active',
'currentTag' => 'a'
)
);
echo $this->Paginator->next(
'次へ',
array(
'tag' => 'li',
'disabledTag' => 'a'
),
null,
array(
'tag' => 'li',
'disabledTag' => 'a',
'class' => 'disabled'
)
);
?>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment