class EntityTestMultiValueBasefield

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMultiValueBaseField.php \Drupal\entity_test\Entity\EntityTestMultiValueBaseField
  2. 10 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMultiValueBasefield.php \Drupal\entity_test\Entity\EntityTestMultiValueBasefield
  3. 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMultiValueBasefield.php \Drupal\entity_test\Entity\EntityTestMultiValueBasefield

Defines an entity type with a multivalue base field.

Plugin annotation


@ContentEntityType(
  id = "entity_test_multivalue_basefield",
  label = @Translation("Entity Test with a multivalue base field"),
  base_table = "entity_test_multivalue_basefield",
  data_table = "entity_test_multivalue_basefield_field_data",
  handlers = {
    "views_data" = "Drupal\views\EntityViewsData",
  },
  entity_keys = {
    "id" = "id",
    "uuid" = "uuid",
    "bundle" = "type",
    "label" = "name",
    "langcode" = "langcode",
  }
)

Hierarchy

Expanded class hierarchy of EntityTestMultiValueBasefield

1 file declares its use of EntityTestMultiValueBasefield
EntityViewsWithMultivalueBasefieldTest.php in core/modules/views/tests/src/Kernel/Entity/EntityViewsWithMultivalueBasefieldTest.php

File

core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMultiValueBasefield.php, line 27

Namespace

Drupal\entity_test\Entity
View source
class EntityTestMultiValueBasefield extends EntityTest {
  
  /**
   * {@inheritdoc}
   */
  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    $fields = parent::baseFieldDefinitions($entity_type);
    $fields['name']->setCardinality(2);
    return $fields;
  }

}

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