public function FieldStorageConfig::isBaseField in Drupal 8
Same name and namespace in other branches
- 9 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 482
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\EntityCode
public function isBaseField() {
return FALSE;
}