public function FieldStorageConfig::isDeleted in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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.
Overrides FieldStorageConfigInterface::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 519 - Contains \Drupal\field\Entity\FieldStorageConfig.
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\EntityCode
public function isDeleted() {
return $this->deleted;
}