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