You are here

public function FieldStorageConfig::isLocked in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\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 679

Class

FieldStorageConfig
Defines the Field storage configuration entity.

Namespace

Drupal\field\Entity

Code

public function isLocked() {
  return $this->locked;
}