38 $calls[] = array(
'Content',
'list');
39 $contents = $this->contentRepository->findAll();
40 foreach ($contents as $content) {
41 $uid = $content->getUid();
42 $calls[] = array(
'Content',
'show', array(
'content' => (
string)
$uid));
58 $this->
forward($call[1], $call[0], NULL, isset($call[2]) ? $call[2] : NULL);
62 $this->request->setDispatched(TRUE);
64 $this->view->assign(
'value', $value);
76 $controllerObjectName = $request->getControllerObjectName();
77 $controller = $this->objectManager->get($controllerObjectName);
78 if (!$controller instanceof \
TYPO3\CMS\Extbase\Mvc\Controller\ControllerInterface) {
79 throw new \TYPO3\CMS\Extbase\Mvc\Exception\InvalidControllerException(
'Invalid controller "' . $request->getControllerObjectName() .
'". The controller must implement the TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ControllerInterface.', 1202921619);
forward($actionName, $controllerName=NULL, $extensionName=NULL, array $arguments=NULL)
resolveController(\TYPO3\CMS\Extbase\Mvc\RequestInterface $request)