Skip to content

Instantly share code, notes, and snippets.

@slywalker
Created October 5, 2011 07:25
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save slywalker/1263853 to your computer and use it in GitHub Desktop.
Save slywalker/1263853 to your computer and use it in GitHub Desktop.
pagination element for CakePHP on twitter bootstrap
<?php
if (!isset($modules)) {
$modulus = 11;
}
if (!isset($model)) {
$models = ClassRegistry::keys();
$model = Inflector::camelize(current($models));
}
?>
<div class="pagination">
<ul>
<?php echo $this->Paginator->first('<<', array('tag' => 'li')); ?>
<?php echo $this->Paginator->prev('<', array(
'tag' => 'li',
'class' => 'prev',
), $this->Paginator->link('<', array()), array(
'tag' => 'li',
'escape' => false,
'class' => 'prev disabled',
)); ?>
<?php
$page = $this->params['paging'][$model]['page'];
$pageCount = $this->params['paging'][$model]['pageCount'];
if ($modulus > $pageCount) {
$modulus = $pageCount;
}
$start = $page - intval($modulus / 2);
if ($start < 1) {
$start = 1;
}
$end = $start + $modulus;
if ($end > $pageCount) {
$end = $pageCount + 1;
$start = $end - $modulus;
}
for ($i = $start; $i < $end; $i++) {
$url = array('page' => $i);
$class = null;
if ($i == $page) {
$url = array();
$class = 'active';
}
echo $this->Html->tag('li', $this->Paginator->link($i, $url), array(
'class' => $class,
));
}
?>
<?php echo $this->Paginator->next('>', array(
'tag' => 'li',
'class' => 'next',
), $this->Paginator->link('>', array()), array(
'tag' => 'li',
'escape' => false,
'class' => 'next disabled',
)); ?>
<?php echo str_replace('<>', '', $this->Html->tag('li', $this->Paginator->last('>>', array(
'tag' => null,
)), array(
'class' => 'next',
))); ?>
</ul>
</div>
@jtraulle
Copy link

Guy, you rock !
Many thanks !

@martinschenk
Copy link

perfect! thank you.

@pasela
Copy link

pasela commented Jul 31, 2012

Great stuff! but I think the variable of the 2nd line is not $modules but $modulus.

@slywalker
Copy link
Author

I don't maintain this code.
If you use CakePHP2.x, please refer to url.

https://github.com/slywalker/TwitterBootstrap

@itogen
Copy link

itogen commented Jul 11, 2013

Great work!
ありがとう!

@vibhasbhingarde
Copy link

Perfect ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment