system_test.install 538 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the system_test module.
  5. */
  6. /**
  7. * Implements hook_schema().
  8. */
  9. function system_test_schema() {
  10. // Trigger a search for a module in the filesystem when requested by
  11. // system_test_drupal_get_filename_with_schema_rebuild().
  12. if (variable_get('system_test_drupal_get_filename_attempt_recursive_rebuild')) {
  13. $module_name = variable_get('system_test_drupal_get_filename_test_module_name');
  14. drupal_get_filename('module', $module_name);
  15. }
  16. return array();
  17. }