config_ignore_hook_test.module 279 B

12345678910111213
  1. <?php
  2. /**
  3. * @file
  4. * Module that implements all the hook from Config Ignore for testing purposes.
  5. */
  6. /**
  7. * Implements hook_config_ignore_settings_alter().
  8. */
  9. function config_ignore_hook_test_config_ignore_settings_alter(array &$settings) {
  10. $settings[] = 'system.site';
  11. }