function BaseFieldDefinition::setRevisionable

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setRevisionable()
  2. 8.9.x core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setRevisionable()
  3. 10 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setRevisionable()

Sets whether the field is revisionable.

Parameters

bool $revisionable: Whether the field is revisionable.

Return value

$this The object itself for chaining.

File

core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 250

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function setRevisionable($revisionable) {
    $this->definition['revisionable'] = $revisionable;
    return $this;
}

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