forked from greenfieldr/tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_autoload.php
18 lines (18 loc) · 1.18 KB
/
ext_autoload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
$classPath = t3lib_extMgm::extPath('tool', 'Classes/');
$prefix = 'tx_tool_';
return array(
$prefix . 'resource_fileresource' => $classPath . 'Resource/FileResource.php',
$prefix . 'resource_fileresourceobjectstorage' => $classPath . 'Resource/FileResourceObjectStorage.php',
$prefix . 'service_authservice' => $classPath . 'Service/AuthService.php',
$prefix . 'service_cloneservice' => $classPath . 'Service/CloneService.php',
$prefix . 'service_domainservice' => $classPath . 'Service/DomainService.php',
$prefix . 'service_fileservice' => $classPath . 'Service/FileService.php',
$prefix . 'service_jsonservice' => $classPath . 'Service/JsonService.php',
$prefix . 'service_marshallservice' => $classPath . 'Service/MarshallService.php',
$prefix . 'service_recursionservice' => $classPath . 'Service/RecursionService.php',
$prefix . 'service_userservice' => $classPath . 'Service/UserService.php',
$prefix . 'utility_arrayutility' => $classPath . 'Utility/ArrayUtility.php',
$prefix . 'utility_pathutility' => $classPath . 'Utility/PathUtility.php',
$prefix . 'utility_versionutility' => $classPath . 'Utility/VersionUtility.php',
);