public function DummyFieldProperty::defaultConfiguration in Search API Solr 8.2
Same name and namespace in other branches
- 8.3 src/Plugin/search_api/processor/Property/DummyFieldProperty.php \Drupal\search_api_solr\Plugin\search_api\processor\Property\DummyFieldProperty::defaultConfiguration()
- 4.x src/Plugin/search_api/processor/Property/DummyFieldProperty.php \Drupal\search_api_solr\Plugin\search_api\processor\Property\DummyFieldProperty::defaultConfiguration()
Gets the default configuration for this property.
Return value
array An associative array with the default configuration.
Overrides ConfigurablePropertyBase::defaultConfiguration
File
- src/
Plugin/ search_api/ processor/ Property/ DummyFieldProperty.php, line 22
Class
- DummyFieldProperty
- Defines a "dummy field" property.
Namespace
Drupal\search_api_solr\Plugin\search_api\processor\PropertyCode
public function defaultConfiguration() {
return [
'dummy_value' => 'dummy',
];
}