function tmgmt_config_config_schema_info_alter

Implements hook_config_schema_info_alter().

File

sources/tmgmt_config/tmgmt_config.module, line 13
Hooks for the TMGMT Config source module.

Code

function tmgmt_config_config_schema_info_alter(&$definitions) {
  if (isset($definitions['webform.webform.*'])) {
    $definitions['webform.webform.*']['tmgmt_config_processor'] = WebformConfigProcessor::class;
  }
}