Feature: #105084 - Add setting to configure indexed_search pagination 

See forge#105084

Description 

A new TypoScript setting plugin.tx_indexedsearch.settings.pagination_type has been introduced to set the pagination implementation used by EXT:indexed_search.

Available values:

  • simple: uses SimplePagination and renders all result pages.
  • slidingWindow: uses SlidingWindowPagination and limits the displayed page links as set in plugin.tx_indexedsearch.settings.page_links.

The default is simple to preserve existing behavior. Integrators can switch to slidingWindow to make page_links effective for indexed_search result browsing.

Impact 

Integrators can now switch between core pagination implementations using TypoScript, without having to use custom PHP code.

Advanced, fully-customized pagination logic can still be implemented using \ModifySearchResultSetsEvent.