FieldConfigInterface.php
Namespace
Drupal\fieldFile
-
core/
modules/ field/ src/ FieldConfigInterface.php
View source
<?php
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();
}
Interfaces
| Title | Deprecated | Summary |
|---|---|---|
| FieldConfigInterface | Provides an interface defining a field entity. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.