config_ignore.api.php 342 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * Hooks specific to the Config Ignore module.
  5. */
  6. /**
  7. * @addtogroup hooks
  8. * @{
  9. */
  10. /**
  11. * Alter the list of config entities that should be ignored.
  12. */
  13. function hook_config_ignore_settings_alter(array &$settings) {
  14. $settings[] = 'system.site';
  15. $settings[] = 'field.*';
  16. }
  17. /**
  18. * @} End of "addtogroup hooks".
  19. */