public function BaseFieldDefinition::setRevisionable in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setRevisionable()
- 9 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\FieldCode
public function setRevisionable($revisionable) {
$this->definition['revisionable'] = $revisionable;
return $this;
}