function content_translation_language_configuration_element_submit

content_translation_language_configuration_element_submit(array $form, FormStateInterface $form_state)

Form submission handler for element added with content_translation_language_configuration_element_process().

Stores the content translation settings.

See also

content_translation_language_configuration_element_validate()

File

core/modules/content_translation/content_translation.module, line 528
Allows entities to be translated into different languages.

Code

function content_translation_language_configuration_element_submit(array $form, FormStateInterface $form_state) {
  $key = $form_state->get(['content_translation', 'key']);
  $context = $form_state->get(['language', $key]);
  $enabled = $form_state->getValue(array($key, 'content_translation'));

  if (\Drupal::service('content_translation.manager')->isEnabled($context['entity_type'], $context['bundle']) != $enabled) {
    \Drupal::service('content_translation.manager')->setEnabled($context['entity_type'], $context['bundle'], $enabled);
    \Drupal::entityManager()->clearCachedDefinitions();
    \Drupal::service('router.builder')->setRebuildNeeded();
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!content_translation!content_translation.module/function/content_translation_language_configuration_element_submit/8.1.x