[TYPO3-german] Listview in eigener Extension mit Filter
Michael Müller
info at ihr-layout.eu
Wed Aug 19 19:51:23 CEST 2015
Hallo,
ich stehe gerade vor de Problem, wenn ich meine listAction Filtern möchte bekomme ich immer diese Fehlermeldung.
"An error occurred while trying to call IL\test\Controller\TestController->listAction()"
Das hier steht im Controller
/**
* action list
*
* @return void
*/
public function listAction(\IL\Test\Domain\Model\Test $formular = NULL) {
if(!empty ($formular)) {
$testssearch = $this->testRepository->findTestSearch($formular);
$this->view->assign('tests', $testssearch);
}else{
$tests = $this->testRepository->findAll();
$this->view->assign('tests', $tests);
}
}
Das $formular wir über ein <f:form action="list" controller="Test" pageUid="{settings.listPage}" name="formular" object="{formular}"> übergeben.
Hoffe das ist verständlich
More information about the TYPO3-german
mailing list