You are here

config_ignore_hook_test.module in Config Ignore 8.3

Same filename and directory in other branches
  1. 8.2 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';
  $count = \Drupal::state()
    ->get('hook_config_ignore_settings_alter__call_count', 0);
  \Drupal::state()
    ->set('hook_config_ignore_settings_alter__call_count', $count + 1);
}