function TaxonomyTranslationTestTrait::setUpTermReferenceField

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php \Drupal\Tests\taxonomy\Functional\TaxonomyTranslationTestTrait::setUpTermReferenceField()
  2. 8.9.x core/modules/taxonomy/src/Tests/TaxonomyTranslationTestTrait.php \Drupal\taxonomy\Tests\TaxonomyTranslationTestTrait::setUpTermReferenceField()
  3. 8.9.x core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php \Drupal\Tests\taxonomy\Functional\TaxonomyTranslationTestTrait::setUpTermReferenceField()
  4. 10 core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php \Drupal\Tests\taxonomy\Functional\TaxonomyTranslationTestTrait::setUpTermReferenceField()

Adds term reference field for the article content type.

2 calls to TaxonomyTranslationTestTrait::setUpTermReferenceField()
TermTranslationFieldViewTest::setUp in core/modules/taxonomy/tests/src/Functional/TermTranslationFieldViewTest.php
TermTranslationTest::setUp in core/modules/taxonomy/tests/src/Functional/TermTranslationTest.php

File

core/modules/taxonomy/tests/src/Functional/TaxonomyTranslationTestTrait.php, line 75

Class

TaxonomyTranslationTestTrait
Provides common testing base for translated taxonomy terms.

Namespace

Drupal\Tests\taxonomy\Functional

Code

protected function setUpTermReferenceField() {
    $handler_settings = [
        'target_bundles' => [
            $this->vocabulary
                ->id() => $this->vocabulary
                ->id(),
        ],
        'auto_create' => TRUE,
    ];
    $this->createEntityReferenceField('node', 'article', $this->termFieldName, NULL, 'taxonomy_term', 'default', $handler_settings, FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);
    $field_storage = FieldStorageConfig::loadByName('node', $this->termFieldName);
    $field_storage->setTranslatable(FALSE);
    $field_storage->save();
    
    /** @var \Drupal\Core\Entity\EntityDisplayRepositoryInterface $display_repository */
    $display_repository = \Drupal::service('entity_display.repository');
    $display_repository->getFormDisplay('node', 'article')
        ->setComponent($this->termFieldName, [
        'type' => 'entity_reference_autocomplete_tags',
    ])
        ->save();
    $display_repository->getViewDisplay('node', 'article')
        ->setComponent($this->termFieldName, [
        'type' => 'entity_reference_label',
    ])
        ->save();
}

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