function SearchPluginBase::setSearch
Same name in other branches
- 8.9.x core/modules/search/src/Plugin/SearchPluginBase.php \Drupal\search\Plugin\SearchPluginBase::setSearch()
- 10 core/modules/search/src/Plugin/SearchPluginBase.php \Drupal\search\Plugin\SearchPluginBase::setSearch()
- 11.x core/modules/search/src/Plugin/SearchPluginBase.php \Drupal\search\Plugin\SearchPluginBase::setSearch()
Overrides SearchInterface::setSearch
1 call to SearchPluginBase::setSearch()
- SearchExtraTypeSearch::setSearch in core/
modules/ search/ tests/ modules/ search_extra_type/ src/ Plugin/ Search/ SearchExtraTypeSearch.php - Sets the keywords, parameters, and attributes to be used by execute().
1 method overrides SearchPluginBase::setSearch()
- SearchExtraTypeSearch::setSearch in core/
modules/ search/ tests/ modules/ search_extra_type/ src/ Plugin/ Search/ SearchExtraTypeSearch.php - Sets the keywords, parameters, and attributes to be used by execute().
File
-
core/
modules/ search/ src/ Plugin/ SearchPluginBase.php, line 51
Class
- SearchPluginBase
- Defines a base class for plugins wishing to support search.
Namespace
Drupal\search\PluginCode
public function setSearch($keywords, array $parameters, array $attributes) {
$this->keywords = (string) $keywords;
$this->searchParameters = $parameters;
$this->searchAttributes = $attributes;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.