function comment_test_entity_type_alter

Same name and namespace in other branches
  1. 9 core/modules/comment/tests/modules/comment_test/comment_test.module \comment_test_entity_type_alter()
  2. 8.9.x core/modules/comment/tests/modules/comment_test/comment_test.module \comment_test_entity_type_alter()
  3. 10 core/modules/comment/tests/modules/comment_test/comment_test.module \comment_test_entity_type_alter()

Implements hook_entity_type_alter().

File

core/modules/comment/tests/modules/comment_test/comment_test.module, line 14

Code

function comment_test_entity_type_alter(array &$entity_types) {
    
    /** @var \Drupal\Core\Entity\EntityTypeInterface[] $entity_types */
    if (\Drupal::languageManager()->isMultilingual()) {
        // Enable language handling for comment fields.
        $translation = $entity_types['comment']->get('translation');
        $translation['comment_test'] = TRUE;
        $entity_types['comment']->set('translation', $translation);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.