You are here

config_ignore_hook_test.module in Config Ignore 8

Module that implements all the hook from Config Ignore for testing purposes.

File

tests/config_ignore_hook_test/config_ignore_hook_test.module
View source
<?php

/**
 * @file
 * Module that implements all the hook from Config Ignore for testing purposes.
 */

/**
 * Implements hook_config_ignore_settings_alter().
 */
function config_ignore_hook_test_config_ignore_settings_alter(array &$settings) {
  $settings[] = 'system.site';
}