27 lines
503 B
PHP
27 lines
503 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Contains \Drupal\field\FieldConfigInterface.
|
|
*/
|
|
|
|
namespace Drupal\field;
|
|
|
|
use Drupal\Core\Config\Entity\ConfigEntityInterface;
|
|
use Drupal\Core\Field\FieldDefinitionInterface;
|
|
|
|
/**
|
|
* Provides an interface defining a field entity.
|
|
*/
|
|
interface FieldConfigInterface extends ConfigEntityInterface, FieldDefinitionInterface {
|
|
|
|
/**
|
|
* Gets the deleted flag of the field.
|
|
*
|
|
* @return bool
|
|
* Returns TRUE if the field is deleted.
|
|
*/
|
|
public function isDeleted();
|
|
|
|
}
|