function EntityTestStringId::baseFieldDefinitions
Same name in other branches
- 9 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestStringId.php \Drupal\entity_test\Entity\EntityTestStringId::baseFieldDefinitions()
- 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestStringId.php \Drupal\entity_test\Entity\EntityTestStringId::baseFieldDefinitions()
- 11.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestStringId.php \Drupal\entity_test\Entity\EntityTestStringId::baseFieldDefinitions()
Overrides EntityTest::baseFieldDefinitions
File
-
core/
modules/ system/ tests/ modules/ entity_test/ src/ Entity/ EntityTestStringId.php, line 44
Class
- EntityTestStringId
- Defines a test entity class with a string ID.
Namespace
Drupal\entity_test\EntityCode
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields = parent::baseFieldDefinitions($entity_type);
$fields['id'] = BaseFieldDefinition::create('string')->setLabel(t('ID'))
->setDescription(t('The ID of the test entity.'))
->setReadOnly(TRUE)
->setSetting('is_ascii', TRUE);
return $fields;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.