config_ignore.api.php in Config Ignore 8
Same filename and directory in other branches
Hooks specific to the Config Ignore module.
File
config_ignore.api.phpView 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
Name | Description |
---|---|
hook_config_ignore_settings_alter | Alter the list of config entities that should be ignored. |