From 6d496d935962b1834297a20fad5b1bf4ea0a98ee Mon Sep 17 00:00:00 2001 From: Claus Due Date: Thu, 18 Aug 2011 19:03:13 +0200 Subject: [PATCH] [+BUGFIX] Added missing initializeView method in EmptyView This change adds an empty function to observe method requirements set by the interface. Thanks to Jay Dinse for reporting! Change-Id: Ie2551cbccfe8eb6d5afb6f9490107b254f38d4a6 Fixes: #28966 --- typo3/sysext/extbase/Classes/MVC/View/EmptyView.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/typo3/sysext/extbase/Classes/MVC/View/EmptyView.php b/typo3/sysext/extbase/Classes/MVC/View/EmptyView.php index 873e4f09a802..1e682bd56808 100644 --- a/typo3/sysext/extbase/Classes/MVC/View/EmptyView.php +++ b/typo3/sysext/extbase/Classes/MVC/View/EmptyView.php @@ -99,5 +99,16 @@ final class Tx_Extbase_MVC_View_EmptyView implements Tx_Extbase_MVC_View_ViewInt */ public function __call($methodName, array $arguments) { } + + /** + * Initializes this view. + * + * Override this method for initializing your concrete view implementation. + * + * @return void + * @api + */ + public function initializeView() { + } } ?> \ No newline at end of file -- 2.20.1