Open
Description
Pagination controls worked fine with ZfcTwig 1.1.5. However, when I update to ZfcTwig 1.2.0 or higher the partial template appears not to be rendering any more.
Code in the template to invoke the pagination control:
{{ paginationControl(data, 'sliding', {0 : 'partial/paginator.twig', 1 : 'Logboek'}, {'route' : 'logboek', 'orderBy' : orderBy, 'order' : order}) }}
In partial/paginator.twig:
{% if pageCount %}
<div class="pagination">
{% if previous is defined %}
<a href="{{ url(route, {'entity' : entity, 'order_by' : orderBy, 'order' : order, 'page' : previous}) }}"
class="prev">«
vorige pagina</a>
{% endif %}
{% for page in pagesInRange %}
{% if page != current %}
<a href="{{ url(route, {'entity' : entity, 'order_by' : orderBy, 'order' : order, 'page' : page}) }}">{{ page }}</a>
{% else %}
<a class="active">{{ page }}</a>
{% endif %}
{% endfor %}
{% if next is defined %}
<a href="{{ url(route, {'entity' : entity, 'order_by' : orderBy, 'order' : order, 'page' : next}) }}"
class="prev">volgende
pagina »</a>
{% endif %}
</div>
{% endif %}
This is what it looks like with ZfcTwig 1.1.5:
This is what it looks like with ZfcTwig 1.2.0:
I have tried these tests with several versions of twig and zend framework, none seem to work properly with ZfcTwig 1.2.0.
Metadata
Metadata
Assignees
Labels
No labels