public function FieldConfig::isDeleted in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/field/src/Entity/FieldConfig.php \Drupal\field\Entity\FieldConfig::isDeleted()
Gets the deleted flag of the field.
Return value
bool Returns TRUE if the field is deleted.
Overrides FieldConfigInterface::isDeleted
File
- core/
modules/ field/ src/ Entity/ FieldConfig.php, line 280 - Contains \Drupal\field\Entity\FieldConfig.
Class
- FieldConfig
- Defines the Field entity.
Namespace
Drupal\field\EntityCode
public function isDeleted() {
return $this->deleted;
}