forked from TYPO3-extensions/ExternalImport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_autoload.php
16 lines (16 loc) · 1.1 KB
/
ext_autoload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/*
* Register necessary class names with autoloader
*
* $Id$
*/
return array(
'tx_externalimport_importer' => t3lib_extMgm::extPath('external_import', 'class.tx_externalimport_importer.php'),
'tx_externalimport_autosync_wrapper_scheduler' => t3lib_extMgm::extPath('external_import', 'autosync/class.tx_externalimport_autosync_wrapper_scheduler.php'),
'tx_externalimport_autosync_scheduler_task' => t3lib_extMgm::extPath('external_import', 'autosync/class.tx_externalimport_autosync_scheduler_task.php'),
'tx_externalimport_autosync_scheduler_additionalfieldprovider' => t3lib_extMgm::extPath('external_import', 'autosync/class.tx_externalimport_autosync_scheduler_additionalfieldprovider.php'),
// NOTE: these need to be autoloaded because they are not used in a proper Extbase context
'tx_externalimport_domain_repository_configurationrepository' => t3lib_extMgm::extPath('external_import', 'Classes/Domain/Repository/ConfigurationRepository.php'),
'tx_externalimport_domain_repository_schedulerrepository' => t3lib_extMgm::extPath('external_import', 'Classes/Domain/Repository/SchedulerRepository.php')
);
?>