public function BaseFieldDefinition::isRevisionable in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::isRevisionable()
- 9 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::isRevisionable()
Returns whether the field storage is revisionable.
Note that if the entity type is revisionable and the field storage has a cardinality higher than 1, the field storage is considered revisionable by default.
Return value
bool TRUE if the field is revisionable.
Overrides FieldStorageDefinitionInterface::isRevisionable
File
- core/
lib/ Drupal/ Core/ Field/ BaseFieldDefinition.php, line 235
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\FieldCode
public function isRevisionable() {
// Multi-valued base fields are always considered revisionable, just like
// configurable fields.
return !empty($this->definition['revisionable']) || $this
->isMultiple();
}