You are here

public function FieldStorageDefinition::isBaseField in Field Inheritance 2.0.x

Same name and namespace in other branches
  1. 8 src/FieldStorageDefinition.php \Drupal\field_inheritance\FieldStorageDefinition::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 BaseFieldDefinition::isBaseField

File

src/FieldStorageDefinition.php, line 21

Class

FieldStorageDefinition
A custom field storage definition class.

Namespace

Drupal\field_inheritance

Code

public function isBaseField() {
  return FALSE;
}