Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CommentTranslationHandler.php

function CommentTranslationHandler::entityFormEntityBuild

Overrides ContentTranslationHandler::entityFormEntityBuild

File

core/modules/comment/src/CommentTranslationHandler.php, line 39

Class

CommentTranslationHandler
Defines the translation handler for comments.

Namespace

Drupal\comment

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');
        
        /** @var \Drupal\comment\CommentInterface $entity */
        $translation['status'] = $entity->isPublished();
        $translation['name'] = $entity->getAuthorName();
    }
    parent::entityFormEntityBuild($entity_type, $entity, $form, $form_state);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal