FieldConfigInterface.php in Drupal 10
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\fieldFile
core/modules/field/src/FieldConfigInterface.phpView 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
Name | Description |
---|---|
FieldConfigInterface | Provides an interface defining a field entity. |