Marcel Kapfer
89ee94bf28
The TYPO3_MODE variable was deprecated with TYPO3 v11 and replaced with the TYPO3 constant. Refs: #2
9 lines
286 B
PHP
9 lines
286 B
PHP
<?php
|
|
|
|
if (!defined('TYPO3')) {
|
|
die('Access denied.');
|
|
}
|
|
|
|
call_user_func(function () {
|
|
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_pagerenderer.php']['render-preProcess'][] = \MMK2410\PlausibleAnalytics\Hooks\PageRendererPreProcess::class . '->addLibrary';
|
|
});
|