FieldConfigInterface.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/field/src/FieldConfigInterface.php
- 9 core/lib/Drupal/Core/Field/FieldConfigInterface.php
- 8.9.x core/modules/field/src/FieldConfigInterface.php
- 8.9.x core/lib/Drupal/Core/Field/FieldConfigInterface.php
- 11.x core/modules/field/src/FieldConfigInterface.php
- 11.x core/lib/Drupal/Core/Field/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.