PaginationViewhelper => array

I am using NEOS FLOW 6.0.8 and would like to pass an array to the pagination viewhelper. This does not work out-of-the-box for now. I did a little search on the internet, but found only discussions about old flow versions. Is there a way to pass an array to the viewhelper for this flow version? Thanks for your help!

Short answer : No

The ViewHelper expects a QueryResultInterface object, to be able to traverse and create the links and lists etc.

That is not possible with a array, with this code. Feel free to adapt it, to your needs. You can create your own and use array_slice for ex. to do what you want to.

But, be aware that a array has already selected all data and prepared it, where as the QueryResultInterface only keeps references, until you start executing it.