public function ConfigurablePropertyBase::defaultConfiguration in Search API 8
Gets the default configuration for this property.
Return value
array An associative array with the default configuration.
Overrides ConfigurablePropertyInterface::defaultConfiguration
1 call to ConfigurablePropertyBase::defaultConfiguration()
- ConfigurablePropertyBase::submitConfigurationForm in src/
Processor/ ConfigurablePropertyBase.php - Submits a configuration form for a field based on this property.
3 methods override ConfigurablePropertyBase::defaultConfiguration()
- AddURLProperty::defaultConfiguration in src/
Plugin/ search_api/ processor/ Property/ AddURLProperty.php - Gets the default configuration for this property.
- AggregatedFieldProperty::defaultConfiguration in src/
Plugin/ search_api/ processor/ Property/ AggregatedFieldProperty.php - Gets the default configuration for this property.
- RenderedItemProperty::defaultConfiguration in src/
Plugin/ search_api/ processor/ Property/ RenderedItemProperty.php - Gets the default configuration for this property.
File
- src/
Processor/ ConfigurablePropertyBase.php, line 16
Class
- ConfigurablePropertyBase
- Provides a base class for configurable processor-defined properties.
Namespace
Drupal\search_api\ProcessorCode
public function defaultConfiguration() {
return [];
}