public function ContentTranslationHandler::getSourceLangcode in Drupal 8
Same name and namespace in other branches
- 9 core/modules/content_translation/src/ContentTranslationHandler.php \Drupal\content_translation\ContentTranslationHandler::getSourceLangcode()
Retrieves the source language for the translation being created.
Parameters
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
string The source language code.
Overrides ContentTranslationHandlerInterface::getSourceLangcode
2 calls to ContentTranslationHandler::getSourceLangcode()
- ProfileTranslationHandler::entityFormSave in core/
modules/ user/ src/ ProfileTranslationHandler.php - Form submission handler for ProfileTranslationHandler::entityFormAlter().
- TermTranslationHandler::entityFormSave in core/
modules/ taxonomy/ src/ TermTranslationHandler.php - Form submission handler for TermTranslationHandler::entityFormAlter().
File
- core/
modules/ content_translation/ src/ ContentTranslationHandler.php, line 304
Class
- ContentTranslationHandler
- Base class for content translation handlers.
Namespace
Drupal\content_translationCode
public function getSourceLangcode(FormStateInterface $form_state) {
if ($source = $form_state
->get([
'content_translation',
'source',
])) {
return $source
->getId();
}
return FALSE;
}