public function BundleFieldDefinition::isBaseField in Search API Saved Searches 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 20
Class
- BundleFieldDefinition
- Provides a class for defining entity bundle fields.
Namespace
Drupal\search_api_saved_searchesCode
public function isBaseField() {
return FALSE;
}