Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMapField.php \Drupal\entity_test\Entity\EntityTestMapField::baseFieldDefinitions()
  2. 9 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMapField.php \Drupal\entity_test\Entity\EntityTestMapField::baseFieldDefinitions()

Overrides EntityTest::baseFieldDefinitions

File

core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMapField.php, line 29

Class

EntityTestMapField
An entity used for testing map base field values.

Namespace

Drupal\entity_test\Entity

Code

public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
  $fields = parent::baseFieldDefinitions($entity_type);
  $fields['data'] = BaseFieldDefinition::create('map')
    ->setLabel(t('Data'))
    ->setDescription(t('A serialized array of additional data.'));
  return $fields;
}