Skip to content

Instantly share code, notes, and snippets.

@Oxicode
Created February 20, 2014 23:25
Show Gist options
  • Save Oxicode/9125493 to your computer and use it in GitHub Desktop.
Save Oxicode/9125493 to your computer and use it in GitHub Desktop.
<div class="pagination pagination-large">
<ul>
<?php
echo $this->Paginator->prev(__('prev'), array('tag' => 'li'), null, array('tag' => 'li','class' => 'disabled','disabledTag' => 'a'));
echo $this->Paginator->numbers(array('separator' => '','currentTag' => 'a', 'currentClass' => 'active','tag' => 'li','first' => 1));
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