-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathext_localconf.php
More file actions
15 lines (12 loc) · 754 Bytes
/
ext_localconf.php
File metadata and controls
15 lines (12 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
defined('TYPO3_MODE') or die();
(function () {
$GLOBALS['TYPO3_CONF_VARS']['FE']['ContentObjects']['TYPOSCRIPT_RENDERING'] = \Helhum\TyposcriptRendering\ContentObject\TypoScriptRenderingContentObject::class;
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['requireCacheHashPresenceParameters'][] = 'tx_typoscriptrendering[context]';
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['typoscript_rendering'] = [];
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['typoscript_rendering']['renderClasses'] = [
'record' => 'Helhum\\TyposcriptRendering\\Renderer\\RecordRenderer',
];
// Ignore fake controller argument that gets removed
$GLOBALS['TYPO3_CONF_VARS']['FE']['cacheHash']['excludedParameters'][] = 'tx__[controller]';
})();