Hi there, I’m totally at a loss with the following problem and hope there’s a simple solution that I’m just not seeing.
I have a project section on a website with category filtering via url, that works fine. When using filters the collection $projekte
is filtered properly via the controller as I can see via var_dump($projekte);
Unfiltered:
object(Kirby\Cms\Pages)#275 (5) { [0]=> string(23) "projekte/test-gymnasium" [1]=> string(25) "projekte/testfantasiedach" [2]=> string(35) "projekte/testenhausener-fischfabrik" [3]=> string(26) "projekte/test-dachdeckerei" [4]=> string(28) "projekte/testdachschneiderei" }
Filtered example:
object(Kirby\Cms\Pages)#274 (3) { [0]=> string(25) "projekte/testfantasiedach" [1]=> string(35) "projekte/testenhausener-fischfabrik" [2]=> string(28) "projekte/testdachschneiderei" }
So far so good. When entering the detail page for the project, the filtered object stays the same in order to be able to navigate through the pages inside it. I use the following code to find out if there is a prevoius entry and generate a link or span if there isn’t:
<?php if ($projekte->find($curProjekt)->hasPrev()) { ?>
<a href="<?= $site->url() ?>/projekte/<?= $urlKat ?>/<?= $projekte->find($curProjekt)->prev()->slug() ?>/">←<span> previous Project</span></a>
<?php } else { ?>
<span>←no previous Project</span>
<?php } ?>
But the behaviour is not as expected, it behaves as if ->find()
is accesssing the unfiltered object instead of the filtered one. I expected it to find only the filtered pages since it applied directly to the filtered object. Is it for some reason acessing the initial object or the site pages object? I’m confused.