Skip to content

Commit 9d25b9a

Browse files
committed
Document AbstractListViewPage::getBaseUrlParameters()
1 parent 36d5154 commit 9d25b9a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

docs/php/api/list_views.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -336,13 +336,11 @@ class ExampleListPage extends AbstractListViewPage
336336
}
337337

338338
#[\Override]
339-
protected function initListView(): void
339+
protected function getBaseUrlParameters(): array
340340
{
341-
parent::initListView();
342-
343-
$this->listView->setBaseUrl(LinkHandler::getInstance()->getControllerLink(static::class, [
341+
return [
344342
'categoryID' => $this->categoryID,
345-
]));
343+
];
346344
}
347345
}
348346
```

0 commit comments

Comments
 (0)