1 installer_test.module | installer_test_archiver_info() |
Implements hook_archiver_info().
File
- core/
modules/ installer/ tests/ installer_test/ installer_test.module, line 7
Code
function installer_test_archiver_info() {
return array(
'installer_test_archiver' => array(
// This is bogus, we only care about the extensions for now.
'class' => 'ArchiverInstallerTest',
'extensions' => array('installer-test-extension'),
),
);
}