public function FieldStorageConfig::isRevisionable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\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 596 - Contains \Drupal\field\Entity\FieldStorageConfig.
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\EntityCode
public function isRevisionable() {
// All configurable fields are revisionable.
return TRUE;
}