TYPO3 CMS  TYPO3_8-7
ViewHelperResolver.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 
49 class ViewHelperResolver extends \TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperResolver
50 {
58  public function __construct()
59  {
60  $this->namespaces = $GLOBALS['TYPO3_CONF_VARS']['SYS']['fluid']['namespaces'];
61  if (TYPO3_REQUESTTYPE & TYPO3_REQUESTTYPE_FE && $this->getBackendUser() instanceof BackendUserAuthentication) {
62  $configuration = $this->getBackendUser()->uc['TSFE_adminConfig'];
63  if (isset($configuration['preview_showFluidDebug']) && $configuration['preview_showFluidDebug']) {
64  $this->namespaces['f'][] = 'TYPO3\\CMS\\Fluid\\ViewHelpers\\Debug';
65  // forcibly unset fluid caching as it does not care about the tsfe based caching settings
66  unset($GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['fluid_template']['frontend']);
67  $GLOBALS['TSFE']->set_no_cache('Cache is disabled if fluid debugging is enabled', true);
68  }
69  }
70  }
71 
76  public function createViewHelperInstanceFromClassName($viewHelperClassName)
77  {
78  return $this->getObjectManager()->get($viewHelperClassName);
79  }
80 
84  protected function getObjectManager()
85  {
86  return GeneralUtility::makeInstance(ObjectManager::class);
87  }
88 
92  protected function getBackendUser()
93  {
94  return $GLOBALS['BE_USER'];
95  }
96 }
static makeInstance($className,... $constructorArguments)
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']