public FieldStorageConfig::isDeletable()
Checks if the field storage can be deleted.
Return value
bool TRUE if the field storage can be deleted.
Overrides FieldStorageConfigInterface::isDeletable
File
- core/modules/field/src/Entity/FieldStorageConfig.php, line 805
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\Entity
Code
public function isDeletable() { // The field storage is not deleted, is configured to be removed when there // are no fields, the field storage has no bundles, and field storages are // not in the process of being deleted. return !$this->deleted && !$this->persist_with_no_fields && count($this->getBundles()) == 0 && !static::$inDeletion; }
Please login to continue.