You are here

public function TermTranslationHandler::entityFormAlter in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/src/TermTranslationHandler.php \Drupal\taxonomy\TermTranslationHandler::entityFormAlter()

Performs the needed alterations to the entity form.

Parameters

array $form: The entity form to be altered to provide the translation workflow.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

\Drupal\Core\Entity\EntityInterface $entity: The entity being created or edited.

Overrides ContentTranslationHandler::entityFormAlter

File

core/modules/taxonomy/src/TermTranslationHandler.php, line 17

Class

TermTranslationHandler
Defines the translation handler for terms.

Namespace

Drupal\taxonomy

Code

public function entityFormAlter(array &$form, FormStateInterface $form_state, EntityInterface $entity) {
  parent::entityFormAlter($form, $form_state, $entity);
  $form['content_translation']['status']['#access'] = !isset($form['content_translation']);
  $form['actions']['submit']['#submit'][] = [
    $this,
    'entityFormSave',
  ];
}