public function FieldStorageConfig::isDeleted in Drupal 8
Same name and namespace in other branches
- 9 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::isDeleted()
Returns whether the field is deleted or not.
Return value
bool TRUE if the field is deleted, FALSE otherwise.
Overrides FieldStorageDefinitionInterface::isDeleted
1 call to FieldStorageConfig::isDeleted()
- FieldStorageConfig::getBundles in core/
modules/ field/ src/ Entity/ FieldStorageConfig.php - Returns the list of bundles where the field storage has fields.
File
- core/
modules/ field/ src/ Entity/ FieldStorageConfig.php, line 517
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\EntityCode
public function isDeleted() {
return $this->deleted;
}