You are here

config_ignore.api.php in Config Ignore 8.2

Same filename and directory in other branches
  1. 8.3 config_ignore.api.php
  2. 8 config_ignore.api.php

Hooks specific to the Config Ignore module.

File

config_ignore.api.php
View source
<?php

/**
 * @file
 * Hooks specific to the Config Ignore module.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Alter the list of config entities that should be ignored.
 */
function hook_config_ignore_settings_alter(array &$settings) {
  $settings[] = 'system.site';
  $settings[] = 'field.*';
}

/**
 * @} End of "addtogroup hooks".
 */

Functions

Namesort descending Description
hook_config_ignore_settings_alter Alter the list of config entities that should be ignored.