TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use TYPO3\CMS\Core\Cache\Backend\FileBackend;
|
||||
use TYPO3\CMS\Core\Cache\Frontend\VariableFrontend;
|
||||
use TYPO3\CMS\Dashboard\Persistence\DashboardCreationEnricher;
|
||||
|
||||
defined('TYPO3') or die();
|
||||
|
||||
if (!is_array($GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['dashboard_rss'] ?? null)) {
|
||||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['dashboard_rss'] = [
|
||||
'frontend' => VariableFrontend::class,
|
||||
'backend' => FileBackend::class,
|
||||
'options' => [
|
||||
'defaultLifetime' => 900,
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
// Fill the "owner" field of a dashboard with the user who created it
|
||||
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'][] = DashboardCreationEnricher::class;
|
||||
Reference in New Issue
Block a user