class EntityTestMultiValueBasefield
Same name and namespace in other branches
- 11.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMultiValueBaseField.php \Drupal\entity_test\Entity\EntityTestMultiValueBaseField
- 10 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMultiValueBasefield.php \Drupal\entity_test\Entity\EntityTestMultiValueBasefield
- 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
- class \Drupal\Core\Entity\EntityBase implements \Drupal\Core\Entity\EntityInterface uses \Drupal\Core\Cache\RefinableCacheableDependencyTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait
- class \Drupal\Core\Entity\ContentEntityBase implements \Drupal\Core\Entity\IteratorAggregate, \Drupal\Core\Entity\ContentEntityInterface, \Drupal\Core\TypedData\TranslationStatusInterface uses \Drupal\Core\Entity\EntityChangesDetectionTrait, \Drupal\Core\Entity\SynchronizableEntityTrait extends \Drupal\Core\Entity\EntityBase
- class \Drupal\entity_test\Entity\EntityTest implements \Drupal\user\EntityOwnerInterface extends \Drupal\Core\Entity\ContentEntityBase
- class \Drupal\entity_test\Entity\EntityTestMultiValueBasefield extends \Drupal\entity_test\Entity\EntityTest
- class \Drupal\entity_test\Entity\EntityTest implements \Drupal\user\EntityOwnerInterface extends \Drupal\Core\Entity\ContentEntityBase
- class \Drupal\Core\Entity\ContentEntityBase implements \Drupal\Core\Entity\IteratorAggregate, \Drupal\Core\Entity\ContentEntityInterface, \Drupal\Core\TypedData\TranslationStatusInterface uses \Drupal\Core\Entity\EntityChangesDetectionTrait, \Drupal\Core\Entity\SynchronizableEntityTrait extends \Drupal\Core\Entity\EntityBase
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\EntityView 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.