page.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. ?>
  10. <div class="tb_rg">
  11. <?php if($prevPage): ?>
  12. <a external href="<?= $prevPage['url']['url'] ?>"><</a>
  13. <?php else: ?>
  14. <span><</span>
  15. <?php endif; ?>
  16. <?php if($firstSpaceShow): ?>
  17. <a external href="<?= $firstSpaceShow['url']['url'] ?>"><?= $firstSpaceShow['p'] ?></a>
  18. <?php endif; ?>
  19. <?= $hiddenFrontStr ?>
  20. <?php if(!empty($frontPage )): ?>
  21. <?php foreach($frontPage as $page): ?>
  22. <a external href="<?= $page['url']['url'] ?>"><?= $page['p'] ?></a>
  23. <?php endforeach; ?>
  24. <?php endif; ?>
  25. <?php if($currentPage): ?>
  26. <span class="current" ><?= $currentPage['p'] ?></span>
  27. <?php endif; ?>
  28. <?php if(!empty($behindPage )): ?>
  29. <?php foreach($behindPage as $page): ?>
  30. <a external href="<?= $page['url']['url'] ?>"><?= $page['p'] ?></a>
  31. <?php endforeach; ?>
  32. <?php endif; ?>
  33. <?= $hiddenBehindStr ?>
  34. <?php if($lastSpaceShow): ?>
  35. <a external href="<?= $lastSpaceShow['url']['url'] ?>"><?= $lastSpaceShow['p'] ?></a>
  36. <?php endif; ?>
  37. <?php if($nextPage): ?>
  38. <a external href="<?= $nextPage['url']['url'] ?>">></a>
  39. <?php else: ?>
  40. <span>></span>
  41. <?php endif; ?>
  42. </div>