.. _Settings-getCachedTyposcript: ============================================== Settings::getCachedTyposcript() ============================================== \\nn\\t3::Settings()->getCachedTyposcript(); ---------------------------------------------- High-performance version for initializing the TSFE in the backend. Get the complete TypoScript setup, incl. '.' syntax. Is saved via file cache. .. code-block:: php \nn\t3::Settings()->getCachedTyposcript(); | ``@return array`` Source Code ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code-block:: php public function getCachedTyposcript() { if ($cache = \nn\t3::Cache()->read('nnhelpers_fullTsCache')) { return $cache; } $setup = $this->getFullTyposcript(); \nn\t3::Cache()->write('nnhelpers_fullTsCache', $setup); return $this->typoscriptFullCache = $setup; }