*/ $GLOBALS['BACK_PATH'] = ''; require 'init.php'; $GLOBALS['LANG']->includeLLFile('EXT:lang/locallang_wizards.xml'); /** * TypoScript parser extension class. * * @author Kasper Skårhøj * @package TYPO3 * @subpackage core */ class ext_TSparser extends t3lib_tsparser_ext { /** * Pass through of incoming value for link. * * @param array $P P array * @return string The "_LINK" key value, straight away. * @todo Define visibility */ public function makeHtmlspecialchars($P) { return $P['_LINK']; } } /* * @deprecated since 6.0, the classname SC_wizard_tsconfig and this file is obsolete * and will be removed by 7.0. The class was renamed and is now located at: * typo3/sysext/backend/Classes/Wizard/TsconfigWizard.php */ require_once t3lib_extMgm::extPath('backend') . 'Classes/Wizard/TsconfigWizard.php'; // Make instance: $SOBE = t3lib_div::makeInstance('SC_wizard_tsconfig'); $SOBE->init(); $SOBE->main(); $SOBE->printContent(); ?>