app/template/default/pager.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% if pages.pageCount > 1 %}
  9.     <div class="pagination">
  10.         <ul>
  11.             {# 最初へ #}
  12.             {% if pages.firstPageInRange != 1 %}
  13.                 <li>
  14.                     <a href="{{ path(
  15.                     app.request.attributes.get('_route'),
  16.                     app.request.query.all|merge({'pageno': pages.first})) }}">{{ '<<'|trans }}</a></li>
  17.             {% endif %}
  18.             {# 前へ #}
  19.             {% if pages.previous is defined %}
  20.                 <li>
  21.                     <a href="{{ path(
  22.                     app.request.attributes.get('_route'),
  23.                     app.request.query.all|merge({'pageno': pages.previous})) }}">{{ '<'|trans }}</a></li>
  24.             {% endif %}
  25.             {# 1ページリンクが表示されない場合、「...」を表示 #}
  26.             {% if pages.firstPageInRange != 1 %}
  27.                 <li>...</li>
  28.             {% endif %}
  29.             {% for page in pages.pagesInRange %}
  30.                 {% if page == pages.current %}
  31.                     <li><a class="active" href="{{ path(
  32.                         app.request.attributes.get('_route'),
  33.                         app.request.query.all|merge({'pageno': page})) }}"> {{ page }} </a></li>
  34.                 {% else %}
  35.                     <li><a href="{{ path(
  36.                         app.request.attributes.get('_route'),
  37.                         app.request.query.all|merge({'pageno': page})) }}"> {{ page }} </a></li>
  38.                 {% endif %}
  39.             {% endfor %}
  40.             {# 最終ページリンクが表示されない場合、「...」を表示 #}
  41.             {% if pages.last != pages.lastPageInRange %}
  42.                 <li>...</li>
  43.             {% endif %}
  44.             {# 次へ #}
  45.             {% if pages.next is defined %}
  46.                 <li>
  47.                     <a href="{{ path(
  48.                     app.request.attributes.get('_route'),
  49.                     app.request.query.all|merge({'pageno': pages.next})) }}">{{ '>'|trans }}</a></li>
  50.             {% endif %}
  51.             {# 最後へ #}
  52.             {% if pages.last != pages.lastPageInRange %}
  53.                 <li>
  54.                     <a href="{{ path(
  55.                     app.request.attributes.get('_route'),
  56.                     app.request.query.all|merge({'pageno': pages.last})) }}">{{ '>>'|trans }}</a></li>
  57.             {% endif %}
  58.         </ul>
  59.     </div>
  60. {% endif %}