forked from nxpthx/typo3-upgradereport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
executable file
·33 lines (27 loc) · 1.25 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
33
<?php
if (!defined ('TYPO3_MODE')) {
die ('Access denied.');
}
$checkArray = array(
'Tx_Smoothmigration_Checks_Core_CallToDeprecatedStaticMethods_Definition',
'Tx_Smoothmigration_Checks_Core_CallToDeprecatedViewHelpers_Definition',
'Tx_Smoothmigration_Checks_Core_Mysql_Definition',
'Tx_Smoothmigration_Checks_Core_RemovedConstants_Definition',
'Tx_Smoothmigration_Checks_Core_RequireOnceInExtensions_Definition',
'Tx_Smoothmigration_Checks_Core_Xclasses_Definition',
'Tx_Smoothmigration_Checks_Dam_CallToDamClasses_Definition',
'Tx_Smoothmigration_Checks_Database_Utf8_Definition',
);
Tx_Smoothmigration_Service_Check_Registry::getInstance()->registerChecks($checkArray);
$migrationArray = array(
'Tx_Smoothmigration_Migrations_Core_CallToDeprecatedStaticMethods_Definition',
'Tx_Smoothmigration_Migrations_Core_RequireOnceInExtensions_Definition',
'Tx_Smoothmigration_Migrations_Database_Utf8_Definition',
'Tx_Smoothmigration_Migrations_Core_Xclasses_Definition',
);
Tx_Smoothmigration_Service_Migration_Registry::getInstance()->registerMigrations($migrationArray);
$TYPO3_CONF_VARS['SC_OPTIONS']['GLOBAL']['cliKeys']['smoothmigration'] = array(
t3lib_extMgm::extPath('smoothmigration', 'Classes/Cli/class.smoothmigration_cli.php'),
'_CLI_smoothmigration'
);
?>