forked from fnagel/t3ext-dam_falmigration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_localconf.php
33 lines (26 loc) · 1.5 KB
/
ext_localconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
if (TYPO3_MODE == 'BE') {
$TYPO3_CONF_VARS['SC_OPTIONS']['scheduler']['tasks']['TYPO3\\CMS\\DamFalmigration\\Task\\MigrateTask'] = array(
'extension' => $_EXTKEY,
'title' => 'DAM-FAL Migration: Migrate DAM Records to FAL Records',
'description' => 'Migrates all available DAM records from fileadmin/ to the local storage of the FAL records.',
);
$TYPO3_CONF_VARS['SC_OPTIONS']['scheduler']['tasks']['TYPO3\\CMS\\DamFalmigration\\Task\\MigrateRelationsTask'] = array(
'extension' => $_EXTKEY,
'title' => 'DAM-FAL Migration: Migrate DAM Relations to FAL Relations',
'description' => 'Migrates all available DAM relations from tt_content textpic/image/uploads to FAL relations.',
);
$TYPO3_CONF_VARS['SC_OPTIONS']['scheduler']['tasks']['TYPO3\\CMS\\DamFalmigration\\Task\\MigrateDamFrontendTask'] = array(
'extension' => $_EXTKEY,
'title' => 'DAM-FAL Migration: Migrate DAM_Frontend Plugins',
'description' => 'Migrates all available DAM frontend plugins, and replaces them with tt_content uploads elements.',
);
$TYPO3_CONF_VARS['SC_OPTIONS']['scheduler']['tasks']['TYPO3\\CMS\\DamFalmigration\\Task\\MigrateDamSelectionsTask'] = array(
'extension' => $_EXTKEY,
'title' => 'DAM-FAL Migration: Migrate DAM Selections',
'description' => 'Migrates all available DAM Selections in sys_file_collections (only folder based selections for now).',
);
}