public function BundleFieldDefinition::isBaseField in Entity API 8
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/
BundleFieldDefinition.php, line 23
Class
- BundleFieldDefinition
- Provides a field definition class for bundle fields.
Namespace
Drupal\entityCode
public function isBaseField() {
return FALSE;
}