content_translation_form_alter(array &$form, FormStateInterface $form_state)
Implements hook_form_alter().
File
core/modules/content_translation/content_translation.module, line 291 Allows entities to be translated into different languages.
Code
function content_translation_form_alter(array &$form, FormStateInterface $form_state) {
$form_object = $form_state->getFormObject();
if (!($form_object instanceof ContentEntityFormInterface)) {
return;
}
$entity = $form_object-&