This repository was archived by the owner on Aug 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 2828 * @package TYPO3
2929 * @subpackage tx_coreapi
3030 */
31- class Tx_Coreapi_Command_ApiCommandController extends Tx_Extbase_MVC_Controller_CommandController {
31+ class Tx_Coreapi_Command_DatabaseApiCommandController extends Tx_Extbase_MVC_Controller_CommandController {
3232
3333 /**
3434 * Database compare
Original file line number Diff line number Diff line change 55$ extensionPath = t3lib_extMgm::extPath ('coreapi ' );
66$ extensionClassesPath = $ extensionPath . 'Classes/ ' ;
77return array (
8- 'tx_coreapi_command_apicommandcontroller ' => $ extensionClassesPath . 'Command/ApiCommandController .php ' ,
8+ 'tx_coreapi_command_databaseapicommandcontroller ' => $ extensionClassesPath . 'Command/DatabaseApiCommandController .php ' ,
99 'tx_coreapi_command_siteapicommandcontroller ' => $ extensionClassesPath . 'Command/SiteApiCommandController.php ' ,
1010 'tx_coreapi_command_cacheapicommandcontroller ' => $ extensionClassesPath . 'Command/CacheApiCommandController.php ' ,
1111 'tx_coreapi_service_cacheapiservice ' => $ extensionClassesPath . 'Service/CacheApiService.php ' ,
Original file line number Diff line number Diff line change 33
44if (TYPO3_MODE === 'BE ' ) {
55 // Register commands
6- $ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['extbase ' ]['commandControllers ' ][] = 'Tx_Coreapi_Command_ApiCommandController ' ;
6+ $ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['extbase ' ]['commandControllers ' ][] = 'Tx_Coreapi_Command_DatabaseApiCommandController ' ;
77 $ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['extbase ' ]['commandControllers ' ][] = 'Tx_Coreapi_Command_CacheApiCommandController ' ;
88 $ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['extbase ' ]['commandControllers ' ][] = 'Tx_Coreapi_Command_SiteApiCommandController ' ;
99 $ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['extbase ' ]['commandControllers ' ][] = 'Tx_Coreapi_Command_ExtensionApiCommandController ' ;
1010}
1111
12-
1312 // Register the CLI dispatcher
1413$ GLOBALS ['TYPO3_CONF_VARS ' ]['SC_OPTIONS ' ]['GLOBAL ' ]['cliKeys ' ][$ _EXTKEY ] = array (
1514 'EXT: ' . $ _EXTKEY . '/Classes/Cli/Dispatcher.php ' , '_CLI_lowlevel '
You can’t perform that action at this time.
0 commit comments