diff --git a/typo3/sysext/core/Classes/TypoScript/TemplateService.php b/typo3/sysext/core/Classes/TypoScript/TemplateService.php index b1acc136e343c9bba7d0389b2fc161787307cbe6..3d8b6a568ea5d17261f68bdf3f98c7de4b4a0b1e 100644 --- a/typo3/sysext/core/Classes/TypoScript/TemplateService.php +++ b/typo3/sysext/core/Classes/TypoScript/TemplateService.php @@ -27,6 +27,15 @@ use TYPO3\CMS\Core\Utility\GeneralUtility; class TemplateService { // Debugging, analysis: + /** + * option to enable logging, time-tracking (FE-only) + * usually, this is only done when + * - in FE a BE_USER is logged-in + * - in BE when the BE_USER needs information about the template (TypoScript module) + * @var bool + */ + protected $verbose = FALSE; + // If set, the global tt-timeobject is used to log the performance. /** * @todo Define visibility @@ -303,6 +312,14 @@ class TemplateService { $this->processExtensionStatics = (bool) $processExtensionStatics; } + /** + * sets the verbose parameter + * @param bool $verbose + */ + public function setVerbose($verbose) { + $this->verbose = (bool)$verbose; + } + /** * Initialize * MUST be called directly after creating a new template-object @@ -940,19 +957,24 @@ class TemplateService { if ($this->tt_track) { $GLOBALS['TT']->pull(); } + // Searching for possible unsubstituted constants left (only for information) - if (strstr($all, '{$')) { - $theConstList = array(); - $findConst = explode('{$', $all); - array_shift($findConst); - foreach ($findConst as $constVal) { - $constLen = \TYPO3\CMS\Core\Utility\MathUtility::forceIntegerInRange(strcspn($constVal, '}'), 0, 50); - $theConstList[] = '{$' . substr($constVal, 0, ($constLen + 1)); - } - if ($this->tt_track) { - $GLOBALS['TT']->setTSlogMessage(implode(', ', $theConstList) . ': Constants may remain un-substituted!!', 2); + if ($this->verbose) { + if (strstr($all, '{$')) { + $theConstList = array(); + $findConst = explode('{$', $all); + array_shift($findConst); + foreach ($findConst as $constVal) { + $constLen = \TYPO3\CMS\Core\Utility\MathUtility::forceIntegerInRange(strcspn($constVal, '}'), 0, 50); + $theConstList[] = '{$' . substr($constVal, 0, ($constLen + 1)); + } + if ($this->tt_track) { + $GLOBALS['TT']->setTSlogMessage(implode(', ', $theConstList) . ': Constants may remain un-substituted!!', 2); + } } + } + // Logging the textual size of the TypoScript Setup field text with all constants substituted: if ($this->tt_track) { $GLOBALS['TT']->setTSlogMessage('TypoScript template size as textfile: ' . strlen($all) . ' bytes'); diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php index 8676c59b93dd72ac57292d9ac443c88b11883b9f..dce83dfb29f087739903902cf5ee86dbcc7f1049 100644 --- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php +++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php @@ -2308,6 +2308,7 @@ class TypoScriptFrontendController { */ public function initTemplate() { $this->tmpl = GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\TypoScript\\TemplateService'); + $this->tmpl->setVerbose((bool)$this->beUserLogin); $this->tmpl->init(); $this->tmpl->tt_track = (bool)$this->beUserLogin; }