public 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 474
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\Entity
Code
public function isBaseField() { return FALSE; }
Please login to continue.