‪TYPO3CMS  9.5
EmptyView.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 {
28  public function ‪setControllerContext(\‪TYPO3\CMS\‪Extbase\Mvc\Controller\ControllerContext $controllerContext)
29  {
30  }
31 
39  public function ‪assign($key, $value)
40  {
41  return $this;
42  }
43 
50  public function ‪assignMultiple(array $values)
51  {
52  return $this;
53  }
54 
61  public function ‪canRender(\‪TYPO3\CMS\‪Extbase\Mvc\Controller\ControllerContext $controllerContext)
62  {
63  return true;
64  }
65 
71  public function ‪render()
72  {
73  return '<!-- This is the output of the Empty View. An appropriate View was not found. -->';
74  }
75 
87  public function ‪__call($methodName, array $arguments)
88  {
89  }
90 
96  public function ‪initializeView()
97  {
98  }
99 }
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\setControllerContext
‪setControllerContext(\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext)
Definition: EmptyView.php:28
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:4
‪TYPO3
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\__call
‪__call($methodName, array $arguments)
Definition: EmptyView.php:87
‪TYPO3\CMS\Extbase\Mvc\View\ViewInterface
Definition: ViewInterface.php:21
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView
Definition: EmptyView.php:21
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\initializeView
‪initializeView()
Definition: EmptyView.php:96
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\assignMultiple
‪TYPO3 CMS Extbase Mvc View EmptyView assignMultiple(array $values)
Definition: EmptyView.php:50
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\canRender
‪bool canRender(\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext)
Definition: EmptyView.php:61
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\render
‪string render()
Definition: EmptyView.php:71
‪TYPO3\CMS\Extbase\Mvc\View
Definition: AbstractView.php:2
‪TYPO3\CMS\Extbase\Mvc\View\EmptyView\assign
‪TYPO3 CMS Extbase Mvc View EmptyView assign($key, $value)
Definition: EmptyView.php:39