Skip to content

Instantly share code, notes, and snippets.

@hnaohiro
Last active December 19, 2015 10:49
Show Gist options
  • Save hnaohiro/5942830 to your computer and use it in GitHub Desktop.
Save hnaohiro/5942830 to your computer and use it in GitHub Desktop.
CakePHP + Twitter Bootstrapでページネーション
<div class="pagination">
<ul>
<?php echo $this->Paginator->prev(__('prev'), array('tag' => 'li'), null, array('tag' => 'li','class' => 'disabled','disabledTag' => 'a')); ?>
<?php echo $this->Paginator->numbers(array('separator' => '','currentTag' => 'a', 'currentClass' => 'active','tag' => 'li','first' => 1, 'ellipsis' => '<li class="disabled"><a>...</a></li>')); ?>
<?php echo $this->Paginator->next(__('next'), array('tag' => 'li','currentClass' => 'disabled'), null, array('tag' => 'li','class' => 'disabled','disabledTag' => 'a')); ?>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment