public FieldStorageConfig::isRevisionable()
Returns whether the field is revisionable.
Return value
bool TRUE if the field is revisionable.
Overrides FieldStorageDefinitionInterface::isRevisionable
File
- core/modules/field/src/Entity/FieldStorageConfig.php, line 592
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\Entity
Code
public function isRevisionable() { // All configurable fields are revisionable. return TRUE; }
Please login to continue.