function BaseFieldDefinition::setRevisionable
Same name in other branches
- 9 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setRevisionable()
- 8.9.x core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::setRevisionable()
- 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\FieldCode
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.