‪TYPO3CMS  10.4
EmptyView.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
19 
24 {
31  public function ‪setControllerContext(‪ControllerContext $controllerContext)
32  {
33  }
34 
42  public function ‪assign($key, $value)
43  {
44  return $this;
45  }
46 
53  public function ‪assignMultiple(array $values)
54  {
55  return $this;
56  }
57 
64  public function ‪canRender(‪ControllerContext $controllerContext)
65  {
66  return true;
67  }
68 
74  public function ‪render()
75  {
76  return '<!-- This is the output of the Empty View. An appropriate View was not found. -->';
77  }
78 
90  public function ‪__call($methodName, array $arguments)
91  {
92  }
93 
99  public function ‪initializeView()
100  {
101  }
102 }
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\__call
‪__call($methodName, array $arguments)
Definition: EmptyView.php:90
‪TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext
Definition: ControllerContext.php:28
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\canRender
‪bool canRender(ControllerContext $controllerContext)
Definition: EmptyView.php:64
‪TYPO3\CMS\Extbase\Mvc\View\ViewInterface
Definition: ViewInterface.php:24
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView
Definition: EmptyView.php:24
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\setControllerContext
‪setControllerContext(ControllerContext $controllerContext)
Definition: EmptyView.php:31
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\initializeView
‪initializeView()
Definition: EmptyView.php:99
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\assignMultiple
‪TYPO3 CMS Extbase Mvc View EmptyView assignMultiple(array $values)
Definition: EmptyView.php:53
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\render
‪string render()
Definition: EmptyView.php:74
‪TYPO3\CMS\Extbase\Mvc\View
Definition: AbstractView.php:16
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\assign
‪TYPO3 CMS Extbase Mvc View EmptyView assign($key, $value)
Definition: EmptyView.php:42