drupal_autoload_test.module in Drupal 7
Test module to check code registry.
File
modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.moduleView source
<?php
/**
* @file
* Test module to check code registry.
*/
/**
* Implements hook_registry_files_alter().
*/
function drupal_autoload_test_registry_files_alter(&$files, $modules) {
foreach ($modules as $module) {
// Add the drupal_autoload_test_trait.sh file to the registry when PHP 5.4+
// is being used.
if ($module->name == 'drupal_autoload_test' && version_compare(PHP_VERSION, '5.4') >= 0) {
$files["{$module->dir}/drupal_autoload_test_trait.sh"] = array(
'module' => $module->name,
'weight' => $module->weight,
);
}
}
}
Functions
Name | Description |
---|---|
drupal_autoload_test_registry_files_alter | Implements hook_registry_files_alter(). |