public function ContentTranslationHandler::entityFormSourceChange in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/content_translation/src/ContentTranslationHandler.php \Drupal\content_translation\ContentTranslationHandler::entityFormSourceChange()
Form submission handler for ContentTranslationHandler::entityFormAlter().
Takes care of the source language change.
File
- core/
modules/ content_translation/ src/ ContentTranslationHandler.php, line 649 - Contains \Drupal\content_translation\ContentTranslationHandler.
Class
- ContentTranslationHandler
- Base class for content translation handlers.
Namespace
Drupal\content_translationCode
public function entityFormSourceChange($form, FormStateInterface $form_state) {
$form_object = $form_state
->getFormObject();
$entity = $form_object
->getEntity();
$source = $form_state
->getValue(array(
'source_langcode',
'source',
));
$entity_type_id = $entity
->getEntityTypeId();
$form_state
->setRedirect("entity.{$entity_type_id}.content_translation_add", array(
$entity_type_id => $entity
->id(),
'source' => $source,
'target' => $form_object
->getFormLangcode($form_state),
));
$languages = $this->languageManager
->getLanguages();
drupal_set_message(t('Source language set to: %language', array(
'%language' => $languages[$source]
->getName(),
)));
}