12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <div class="tb_rg">
- <?php if($prevPage): ?>
- <a external href="<?= $prevPage['url']['url'] ?>"><</a>
- <?php else: ?>
- <span><</span>
- <?php endif; ?>
- <?php if($firstSpaceShow): ?>
- <a external href="<?= $firstSpaceShow['url']['url'] ?>"><?= $firstSpaceShow['p'] ?></a>
- <?php endif; ?>
- <?= $hiddenFrontStr ?>
- <?php if(!empty($frontPage )): ?>
- <?php foreach($frontPage as $page): ?>
- <a external href="<?= $page['url']['url'] ?>"><?= $page['p'] ?></a>
- <?php endforeach; ?>
- <?php endif; ?>
-
- <?php if($currentPage): ?>
- <span class="current" ><?= $currentPage['p'] ?></span>
- <?php endif; ?>
-
- <?php if(!empty($behindPage )): ?>
- <?php foreach($behindPage as $page): ?>
- <a external href="<?= $page['url']['url'] ?>"><?= $page['p'] ?></a>
- <?php endforeach; ?>
- <?php endif; ?>
-
- <?= $hiddenBehindStr ?>
- <?php if($lastSpaceShow): ?>
- <a external href="<?= $lastSpaceShow['url']['url'] ?>"><?= $lastSpaceShow['p'] ?></a>
- <?php endif; ?>
- <?php if($nextPage): ?>
- <a external href="<?= $nextPage['url']['url'] ?>">></a>
- <?php else: ?>
- <span>></span>
- <?php endif; ?>
- </div>
-
|