function EntityDefinitionTestTrait::addBaseField
Same name in this branch
- 8.9.x core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addBaseField()
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addBaseField()
- 10 core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addBaseField()
- 11.x core/modules/system/tests/src/Functional/Entity/Traits/EntityDefinitionTestTrait.php \Drupal\Tests\system\Functional\Entity\Traits\EntityDefinitionTestTrait::addBaseField()
Adds a new base field to the 'entity_test_update' entity type.
Parameters
string $type: (optional) The field type for the new field. Defaults to 'string'.
string $entity_type_id: (optional) The entity type ID the base field should be attached to. Defaults to 'entity_test_update'.
bool $is_revisionable: (optional) If the base field should be revisionable or not. Defaults to FALSE.
1 call to EntityDefinitionTestTrait::addBaseField()
- EntityDefinitionTestTrait::modifyBaseField in core/
modules/ system/ src/ Tests/ Entity/ EntityDefinitionTestTrait.php - Modifies the new base field from 'string' to 'text'.
File
-
core/
modules/ system/ src/ Tests/ Entity/ EntityDefinitionTestTrait.php, line 128
Class
- EntityDefinitionTestTrait
- Provides some test methods used to update existing entity definitions.
Namespace
Drupal\system\Tests\EntityCode
protected function addBaseField($type = 'string', $entity_type_id = 'entity_test_update', $is_revisionable = FALSE) {
$definitions['new_base_field'] = BaseFieldDefinition::create($type)->setName('new_base_field')
->setRevisionable($is_revisionable)
->setLabel(t('A new base field'));
$this->state
->set($entity_type_id . '.additional_base_field_definitions', $definitions);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.