You are here

public function FieldStorageConfig::isBaseField in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::isBaseField()

Determines whether the field is a base field.

Base fields are not specific to a given bundle or a set of bundles. This excludes configurable fields, as they are always attached to a specific bundle.

Return value

bool Whether the field is a base field.

Overrides FieldStorageDefinitionInterface::isBaseField

File

core/modules/field/src/Entity/FieldStorageConfig.php, line 485

Class

FieldStorageConfig
Defines the Field storage configuration entity.

Namespace

Drupal\field\Entity

Code

public function isBaseField() {
  return FALSE;
}