function EntityDefinitionTestTrait::addRevisionableBaseField

Adds a new revisionable base field to the 'entity_test_update' entity type.

Parameters

string $type: (optional) The field type for the new field. Defaults to 'string'.

File

core/modules/system/src/Tests/Entity/EntityDefinitionTestTrait.php, line 156

Class

EntityDefinitionTestTrait
Provides some test methods used to update existing entity definitions.

Namespace

Drupal\system\Tests\Entity

Code

protected function addRevisionableBaseField($type = 'string') {
  $definitions['new_base_field'] = BaseFieldDefinition::create($type)->setName('new_base_field')
    ->setLabel(t('A new revisionable base field'))
    ->setRevisionable(TRUE);
  $this->state
    ->set('entity_test_update.additional_base_field_definitions', $definitions);
}

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