‪TYPO3CMS  11.5
ext_localconf.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
8 
9 defined('TYPO3') or die();
10 
11 ‪$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/file_edit.php']['preOutputProcessingHook'][] =
12  ‪FileEditHook::class . '->preOutputProcessingHook';
13 
14 // Hook to add t3editor requirejs config to PageRenderer in backend
15 ‪$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_pagerenderer.php']['render-preProcess'][] =
16  ‪PageRendererRenderPreProcess::class . '->addRequireJsConfiguration';
17 
18 // Register backend FormEngine node
19 ‪$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1433089350] = [
20  'nodeName' => 't3editor',
21  'priority' => 40,
22  'class' => ‪T3editorElement::class,
23 ];
‪TYPO3\CMS\T3editor\Hook\FileEditHook
Definition: FileEditHook.php:32
‪TYPO3\CMS\T3editor\Form\Element\T3editorElement
Definition: T3editorElement.php:35
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:25
‪TYPO3\CMS\T3editor\Hook\PageRendererRenderPreProcess
Definition: PageRendererRenderPreProcess.php:29