westdc-zf1/application/default/views/scripts/pagination_text.phtml

30 lines
1.4 KiB
PHTML

<?php if ($this->pageCount): ?>
<?php //echo $this->firstItemNumber;?>
<span><?php echo $this->totalItemCount ?>条记录</span>
<span><?php echo $this->pageCount ?></span>
<!-- Previous page link -->
<?php if (isset($this->previous)): ?>
<span><a href="<?= $this->url(array('page' => $this->previous)); ?>?<?php echo $_SERVER["QUERY_STRING"];?>" class="prev">上一页</a></span>
<?php else: ?>
<span><a href="javascript:void(0);" class="prev">上一页</a></span>
<?php endif; ?>
<!-- Numbered page links -->
<?php foreach ($this->pagesInRange as $page): ?>
<?php if ($page != $this->current): ?>
<span class="pageSize"><a href="<?= $this->url(array('page' => $page)); ?>?<?php echo $_SERVER["QUERY_STRING"];?>"><?= $page; ?></a></span>
<?php else: ?>
<span class="pageSize"><a href="javascript:void(0);" class="pageClass">[<?= $page; ?>]</a></span>
<?php endif; ?>
<?php endforeach; ?>
<!-- Next page link -->
<?php if (isset($this->next)): ?>
<span><a href="<?= $this->url(array('page' => $this->next)); ?>?<?php echo $_SERVER["QUERY_STRING"];?>" class="next">下一页</a></span>
<?php else: ?>
<span><a href="javascript:void(0);" class="next">下一页</a></span>
<?php endif; ?>
<span><a href="#">返回顶部</a></span>
<?php endif; ?>