function taxonomy_term_display_configurable_test_entity_base_field_info_alter

Same name in other branches
  1. 8.9.x core/modules/taxonomy/tests/modules/taxonomy_term_display_configurable_test/taxonomy_term_display_configurable_test.module \taxonomy_term_display_configurable_test_entity_base_field_info_alter()
  2. 10 core/modules/taxonomy/tests/modules/taxonomy_term_display_configurable_test/taxonomy_term_display_configurable_test.module \taxonomy_term_display_configurable_test_entity_base_field_info_alter()
  3. 11.x core/modules/taxonomy/tests/modules/taxonomy_term_display_configurable_test/taxonomy_term_display_configurable_test.module \taxonomy_term_display_configurable_test_entity_base_field_info_alter()

Implements hook_entity_base_field_info_alter().

File

core/modules/taxonomy/tests/modules/taxonomy_term_display_configurable_test/taxonomy_term_display_configurable_test.module, line 13

Code

function taxonomy_term_display_configurable_test_entity_base_field_info_alter(&$base_field_definitions, EntityTypeInterface $entity_type) {
    if ($entity_type->id() === 'taxonomy_term') {
        
        /** @var \Drupal\Core\Field\BaseFieldDefinition[] $base_field_definitions */
        $base_field_definitions['name']->setDisplayConfigurable('view', TRUE);
    }
}

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