1 system.module | system_autoload_info() |
Implements hook_autoload_info().
File
- core/
modules/ system/ system.module, line 4138 - Configuration system that lets administrators modify the workings of the site.
Code
function system_autoload_info() {
return array(
'ArchiverTar' => 'system.archiver.inc',
'ArchiverZip' => 'system.archiver.inc',
'DefaultMailSystem' => 'system.mail.inc',
'TestingMailSystem' => 'system.mail.inc',
'BackdropQueue' => 'system.queue.inc',
'BackdropQueueInterface' => 'system.queue.inc',
'BackdropReliableQueueInterface' => 'system.queue.inc',
'SystemQueue' => 'system.queue.inc',
'MemoryQueue' => 'system.queue.inc',
'Archive_Tar' => 'system.tar.inc',
'CoreUpdater' => 'system.updater.inc',
'ModuleUpdater' => 'system.updater.inc',
'ThemeUpdater' => 'system.updater.inc',
'LayoutUpdater' => 'system.updater.inc',
// Blocks.
'PageComponents' => 'block.page_components.inc',
// Views handlers.
'views_handler_filter_system_type' => 'views/views_handler_filter_system_type.inc',
'views_handler_field_system_info' => 'views/views_handler_field_system_info.inc',
);
}