2 namespace TYPO3\CMS\Fluid\Core\Widget;
55 $this->widgetConfiguration = $request->getWidgetContext()->getWidgetConfiguration();
56 parent::processRequest($request, $response);
68 $extbaseFrameworkConfiguration = $this->configurationManager->getConfiguration(\TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK);
69 $widgetViewHelperClassName = $this->request->getWidgetContext()->getWidgetViewHelperClassName();
71 isset($extbaseFrameworkConfiguration[
'view'][
'widget'][$widgetViewHelperClassName][
'templateRootPath'])
72 && $extbaseFrameworkConfiguration[
'view'][
'widget'][$widgetViewHelperClassName][
'templateRootPath'] !==
''
73 && method_exists($view,
'setTemplateRootPath')
75 $view->setTemplateRootPath(\TYPO3\CMS\Core\Utility\GeneralUtility::getFileAbsFileName($extbaseFrameworkConfiguration[
'view'][
'widget'][$widgetViewHelperClassName][
'templateRootPath']));