FieldConfigInterface.php

Same filename in this branch
  1. 11.x core/lib/Drupal/Core/Field/FieldConfigInterface.php
Same filename and directory in other branches
  1. 9 core/modules/field/src/FieldConfigInterface.php
  2. 9 core/lib/Drupal/Core/Field/FieldConfigInterface.php
  3. 8.9.x core/modules/field/src/FieldConfigInterface.php
  4. 8.9.x core/lib/Drupal/Core/Field/FieldConfigInterface.php
  5. 10 core/modules/field/src/FieldConfigInterface.php
  6. 10 core/lib/Drupal/Core/Field/FieldConfigInterface.php

Namespace

Drupal\field

File

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.