function 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();
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
