40 $calls[] = [
'Content',
'list'];
41 $contents = $this->contentRepository->findAll();
42 foreach ($contents as $content) {
43 $uid = $content->getUid();
44 $calls[] = [
'Content',
'show', [
'content' => (string)$uid]];
60 $this->
forward($call[1], $call[0],
null, $call[2] ??
null);
65 $this->request->setDispatched(
true);
67 $this->view->assign(
'value', $value);
81 $controller = $this->objectManager->get($controllerObjectName);
82 if (!$controller instanceof \
TYPO3\CMS\
Extbase\Mvc\Controller\ControllerInterface) {
83 throw new \TYPO3\CMS\Extbase\Mvc\Exception\InvalidControllerException(
'Invalid controller "' .
$request->
getControllerObjectName() .
'". The controller must implement the TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ControllerInterface.', 1202921619);