We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
AbstractListViewPage::getBaseUrlParameters()
1 parent 36d5154 commit 9d25b9aCopy full SHA for 9d25b9a
1 file changed
docs/php/api/list_views.md
@@ -336,13 +336,11 @@ class ExampleListPage extends AbstractListViewPage
336
}
337
338
#[\Override]
339
- protected function initListView(): void
+ protected function getBaseUrlParameters(): array
340
{
341
- parent::initListView();
342
-
343
- $this->listView->setBaseUrl(LinkHandler::getInstance()->getControllerLink(static::class, [
+ return [
344
'categoryID' => $this->categoryID,
345
- ]));
+ ];
346
347
348
```
0 commit comments