FieldConfigInterface.php 437 B

123456789101112131415161718192021
  1. <?php
  2. namespace Drupal\field;
  3. use Drupal\Core\Config\Entity\ConfigEntityInterface;
  4. use Drupal\Core\Field\FieldDefinitionInterface;
  5. /**
  6. * Provides an interface defining a field entity.
  7. */
  8. interface FieldConfigInterface extends ConfigEntityInterface, FieldDefinitionInterface {
  9. /**
  10. * Gets the deleted flag of the field.
  11. *
  12. * @return bool
  13. * Returns TRUE if the field is deleted.
  14. */
  15. public function isDeleted();
  16. }