You are here

function webform_form_config_translation_add_form_alter in Webform 6.x

Same name and namespace in other branches
  1. 8.5 includes/webform.translation.inc \webform_form_config_translation_add_form_alter()

Implements hook_form_FORM_ID_alter() for config translation add form.

File

includes/webform.translation.inc, line 62
Webform module translation hooks.

Code

function webform_form_config_translation_add_form_alter(&$form, FormStateInterface $form_state, $is_new = TRUE) {

  /** @var \Drupal\webform\WebformTranslationConfigManagerInterface $translation_config_manager */
  $translation_config_manager = \Drupal::service('webform.translation_config_manager');
  $translation_config_manager
    ->alterForm($form, $form_state);
}