TYPO3 CMS  TYPO3_6-2
EmptyView.php
Go to the documentation of this file.
1 <?php
3 
22 
29  public function setControllerContext(\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext) {
30  }
31 
40  public function assign($key, $value) {
41  return $this;
42  }
43 
51  public function assignMultiple(array $values) {
52  return $this;
53  }
54 
62  public function canRender(\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext) {
63  return TRUE;
64  }
65 
71  public function render() {
72  return '<!-- This is the output of the Empty View. An appropriate View was not found. -->';
73  }
74 
87  public function __call($methodName, array $arguments) {
88  }
89 
98  public function initializeView() {
99  }
100 }
setControllerContext(\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext)
Definition: EmptyView.php:29
canRender(\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext)
Definition: EmptyView.php:62
__call($methodName, array $arguments)
Definition: EmptyView.php:87