forked from TYPO3-coreapi/ext-coreapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_autoload.php
17 lines (14 loc) · 957 Bytes
/
ext_autoload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
$extensionPath = t3lib_extMgm::extPath('coreapi');
$extensionClassesPath = $extensionPath . 'Classes/';
return array(
'tx_coreapi_command_databaseapicommandcontroller' => $extensionClassesPath . 'Command/DatabaseApiCommandController.php',
'tx_coreapi_command_siteapicommandcontroller' => $extensionClassesPath . 'Command/SiteApiCommandController.php',
'tx_coreapi_command_cacheapicommandcontroller' => $extensionClassesPath . 'Command/CacheApiCommandController.php',
'tx_coreapi_service_cacheapiservice' => $extensionClassesPath . 'Service/CacheApiService.php',
'tx_coreapi_service_siteapiservice' => $extensionClassesPath . 'Service/SiteApiService.php',
'tx_coreapi_service_databaseapiservice' => $extensionClassesPath . 'Service/DatabaseApiService.php',
'tx_coreapi_service_extensionapiservice' => $extensionClassesPath . 'Service/ExtensionApiService.php',
'tx_coreapi_cli_dispatcher' => $extensionClassesPath .'Cli/Dispatcher.php',
);
?>