public FieldStorageConfig::isLocked()
Returns whether the field storage is locked or not.
Return value
bool TRUE if the field storage is locked.
Overrides FieldStorageConfigInterface::isLocked
File
- core/modules/field/src/Entity/FieldStorageConfig.php, line 667
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\Entity
Code
1 2 3 | public function isLocked() { return $this ->locked; } |
Please login to continue.