trait TaxonomyTranslationTestTrait in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/taxonomy/src/Tests/TaxonomyTranslationTestTrait.php \Drupal\taxonomy\Tests\TaxonomyTranslationTestTrait
Provides common testing base for translated taxonomy terms.
Hierarchy
- trait \Drupal\taxonomy\Tests\TaxonomyTranslationTestTrait uses EntityReferenceTestTrait
File
- core/
modules/ taxonomy/ src/ Tests/ TaxonomyTranslationTestTrait.php, line 18 - Contains \Drupal\taxonomy\Tests\TaxonomyTranslationTestTrait.
Namespace
Drupal\taxonomy\TestsView source
trait TaxonomyTranslationTestTrait {
use EntityReferenceTestTrait;
/**
* The vocabulary.
*
* @var \Drupal\taxonomy\Entity\Vocabulary;
*/
protected $vocabulary;
/**
* The field name for our taxonomy term field.
*
* @var string
*/
protected $termFieldName = 'field_tag';
/**
* The langcode of the source language.
*
* @var string
*/
protected $baseLangcode = 'en';
/**
* Target langcode for translation.
*
* @var string
*/
protected $translateToLangcode = 'hu';
/**
* The node to check the translated value on.
*
* @var \Drupal\node\Entity\Node
*/
protected $node;
/**
* Adds additional languages.
*/
protected function setupLanguages() {
ConfigurableLanguage::createFromLangcode($this->translateToLangcode)
->save();
$this
->rebuildContainer();
}
/**
* Enables translations where it needed.
*/
protected function enableTranslation() {
// Enable translation for the current entity type and ensure the change is
// picked up.
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
\Drupal::service('content_translation.manager')
->setEnabled('taxonomy_term', $this->vocabulary
->id(), TRUE);
drupal_static_reset();
\Drupal::entityManager()
->clearCachedDefinitions();
\Drupal::service('router.builder')
->rebuild();
\Drupal::service('entity.definition_update_manager')
->applyUpdates();
}
/**
* Adds term reference field for the article content type.
*
* @param bool $translatable
* (optional) If TRUE, create a translatable term reference field. Defaults
* to FALSE.
*/
protected function setUpTermReferenceField() {
$handler_settings = array(
'target_bundles' => array(
$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();
entity_get_form_display('node', 'article', 'default')
->setComponent($this->termFieldName, array(
'type' => 'entity_reference_autocomplete_tags',
))
->save();
entity_get_display('node', 'article', 'default')
->setComponent($this->termFieldName, array(
'type' => 'entity_reference_label',
))
->save();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityReferenceTestTrait:: |
protected | function | Creates a field of an entity reference field storage on the specified bundle. | |
TaxonomyTranslationTestTrait:: |
protected | property | The langcode of the source language. | |
TaxonomyTranslationTestTrait:: |
protected | property | The node to check the translated value on. | |
TaxonomyTranslationTestTrait:: |
protected | property | The field name for our taxonomy term field. | |
TaxonomyTranslationTestTrait:: |
protected | property | Target langcode for translation. | |
TaxonomyTranslationTestTrait:: |
protected | property | The vocabulary. | |
TaxonomyTranslationTestTrait:: |
protected | function | Enables translations where it needed. | |
TaxonomyTranslationTestTrait:: |
protected | function | Adds additional languages. | |
TaxonomyTranslationTestTrait:: |
protected | function | Adds term reference field for the article content type. |