Breaking: #102945 - Pagination of Indexed Search replaced
See forge#102945
Description
Indexed Search used a custom crafted pagination, implemented with several
ViewHelpers known as is:
and is:
.
These ViewHelpers have been removed in favor of the existing Pagination API,
leading to template changes.
Impact
In case Fluid templates of EXT:indexed_search are overridden, the frontend will render an exception due to the missing ViewHelpers.
Affected installations
All installations overriding the Fluid template Templates/
of EXT:indexed_search are affected.
Migration
is:
has been replaced with a short HTML snippet:
<f:sanitize.html>
<f:translate key="displayResults" arguments="{0: result.pagination.startRecordNumber, 1: result.pagination.endRecordNumber, 2: result.count}" />
</f:sanitize.html>
Copied!
is:
has been replaced with a new Fluid partial file:
<f:render partial="Pagination" arguments="{pagination: result.pagination, searchParams: searchParams, freeIndexUid: freeIndexUid}" />
Copied!