![]() |
TYPO3
7.6
|
Public Member Functions | |
setControllerContext (\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext) | |
assign ($key, $value) | |
assignMultiple (array $values) | |
canRender (\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext $controllerContext) | |
render () | |
__call ($methodName, array $arguments) | |
initializeView () | |
An empty view - a special case.
http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License, version 3 or later
Definition at line 22 of file EmptyView.php.
__call | ( | $methodName, | |
array | $arguments | ||
) |
A magic call method.
Because this empty view is used as a Special Case in situations when no matching view is available, it must be able to handle method calls which originally were directed to another type of view. This magic method should prevent PHP from issuing a fatal error.
string | $methodName | |
array | $arguments |
Definition at line 93 of file EmptyView.php.
assign | ( | $key, | |
$value | |||
) |
Dummy method to satisfy the ViewInterface
string | $key | |
mixed | $value |
Implements ViewInterface.
Definition at line 42 of file EmptyView.php.
assignMultiple | ( | array | $values | ) |
Dummy method to satisfy the ViewInterface
array | $values |
Implements ViewInterface.
Definition at line 54 of file EmptyView.php.
canRender | ( | \TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext | $controllerContext | ) |
This view can be used in any case.
\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext | $controllerContext |
Implements ViewInterface.
Definition at line 66 of file EmptyView.php.
initializeView | ( | ) |
Initializes this view.
Override this method for initializing your concrete view implementation.
Implements ViewInterface.
Definition at line 105 of file EmptyView.php.
render | ( | ) |
Renders the empty view
Implements ViewInterface.
Definition at line 76 of file EmptyView.php.
setControllerContext | ( | \TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext | $controllerContext | ) |
Dummy method to satisfy the ViewInterface
\TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext | $controllerContext |
Implements ViewInterface.
Definition at line 30 of file EmptyView.php.