diff --git a/Classes/Controller/BackendController.php b/Classes/Controller/BackendController.php index 4a1c8ad44e89a22e0635951b2e403915ef16647e..7833b0104aabf0baa12234005e99f158350d9140 100644 --- a/Classes/Controller/BackendController.php +++ b/Classes/Controller/BackendController.php @@ -63,7 +63,13 @@ class BackendController extends ActionController { */ private $tagRepository; - public function indexAction() { + /** + * @param array $filters + * @throws \InvalidArgumentException + * @throws \UnexpectedValueException + * @throws \TYPO3\CMS\Extbase\Persistence\Exception\InvalidQueryException + */ + public function indexAction(array $filters = []) { // create doc header component $pageUid = (int) GeneralUtility::_GP('id'); /** @var BackendUserAuthentication $backendUser */ @@ -82,5 +88,6 @@ class BackendController extends ActionController { $this->view->assign('pageUid', $pageUid); $this->view->assign('categories', $categories); $this->view->assign('news', $news); + $this->view->assign('fitlers', $filters); } }