Created
May 23, 2011 19:42
-
-
Save eminetto/987416 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ($this->pageCount): ?> | |
<div class="paginationControl"> | |
<!-- Previous page link --> | |
<?php if (isset($this->previous)): ?> | |
<a href="<?php echo $this->url(array('page' => $this->previous)); ?>"> | |
< Previous | |
</a> | | |
<?php else: ?> | |
<span class="disabled">< Previous</span> | | |
<?php endif; ?> | |
<!-- Numbered page links --> | |
<?php foreach ($this->pagesInRange as $page): ?> | |
<?php if ($page != $this->current): ?> | |
<a href="<?php echo $this->url(array('page' => $page)); ?>"> | |
<?php echo $page; ?> | |
</a> | | |
<?php else: ?> | |
<?php echo $page; ?> | | |
<?php endif; ?> | |
<?php endforeach; ?> | |
<!-- Next page link --> | |
<?php if (isset($this->next)): ?> | |
<a href="<?php echo $this->url(array('page' => $this->next)); ?>"> | |
Next > | |
</a> | |
<?php else: ?> | |
<span class="disabled">Next ></span> | |
<?php endif; ?> | |
</div> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment