You are here

public function NodeTranslationHandler::entityFormEntityBuild in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/src/NodeTranslationHandler.php \Drupal\node\NodeTranslationHandler::entityFormEntityBuild()

Entity builder method.

Parameters

string $entity_type: The type of the entity.

\Drupal\Core\Entity\EntityInterface $entity: The entity whose form is being built.

array $form: A nested array form elements comprising the form.

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

Overrides ContentTranslationHandler::entityFormEntityBuild

See also

\Drupal\content_translation\ContentTranslationHandler::entityFormAlter()

File

core/modules/node/src/NodeTranslationHandler.php, line 60

Class

NodeTranslationHandler
Defines the translation handler for nodes.

Namespace

Drupal\node

Code

public function entityFormEntityBuild($entity_type, EntityInterface $entity, array $form, FormStateInterface $form_state) {
  if ($form_state
    ->hasValue('content_translation')) {
    $translation =& $form_state
      ->getValue('content_translation');
    $translation['status'] = $entity
      ->isPublished();
    $account = $entity->uid->entity;
    $translation['uid'] = $account ? $account
      ->id() : 0;
    $translation['created'] = $this->dateFormatter
      ->format($entity->created->value, 'custom', 'Y-m-d H:i:s O');
  }
  parent::entityFormEntityBuild($entity_type, $entity, $form, $form_state);
}