46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use TYPO3\CMS\Scheduler\Form\Element\RegisteredExtractors;
|
|
use TYPO3\CMS\Scheduler\Form\Element\SchedulableCommandConfigurationElement;
|
|
use TYPO3\CMS\Scheduler\Form\Element\TaskTypeInfoElement;
|
|
use TYPO3\CMS\Scheduler\Form\Element\TimingOptionsElement;
|
|
use TYPO3\CMS\Scheduler\Form\FieldInformation\ExpirePeriodInformation;
|
|
use TYPO3\CMS\Scheduler\Hooks\SchedulerTaskPersistenceValidator;
|
|
|
|
defined('TYPO3') or die();
|
|
|
|
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1746714036] = [
|
|
'nodeName' => 'schedulerTimingOptions',
|
|
'priority' => 40,
|
|
'class' => TimingOptionsElement::class,
|
|
];
|
|
|
|
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1758189546] = [
|
|
'nodeName' => 'taskTypeInfo',
|
|
'priority' => 40,
|
|
'class' => TaskTypeInfoElement::class,
|
|
];
|
|
|
|
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1758791054] = [
|
|
'nodeName' => 'registeredExtractors',
|
|
'priority' => 40,
|
|
'class' => RegisteredExtractors::class,
|
|
];
|
|
|
|
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1758906785] = [
|
|
'nodeName' => 'expirePeriodInformation',
|
|
'priority' => 40,
|
|
'class' => ExpirePeriodInformation::class,
|
|
];
|
|
|
|
$GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['nodeRegistry'][1759164368] = [
|
|
'nodeName' => 'schedulableCommandConfiguration',
|
|
'priority' => 40,
|
|
'class' => SchedulableCommandConfigurationElement::class,
|
|
];
|
|
|
|
// Register hook for datamap
|
|
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass'][] = SchedulerTaskPersistenceValidator::class;
|