1 config_test_hooks.module config_test_hooks_config_delete_validate(Config $active_config, $all_changes)

Implements hook_config_delete_validate().

File

core/modules/config/tests/config_test_hooks/config_test_hooks.module, line 34
Tests the hooks provided by Configuration management module.

Code

function config_test_hooks_config_delete_validate(Config $active_config, $all_changes) {
  if ($active_config->getName() === 'config_test.simple') {
    throw new ConfigValidateException(t('Favorite animals are in use.'));
  }
}