You are here

config_ignore_hook_test.module in Config Ignore 8.2

Same filename and directory in other branches
  1. 8.3 tests/modules/config_ignore_hook_test.module

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

File

tests/modules/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';
}