public function NodeSearch::execute in Drupal 9
Same name and namespace in other branches
- 8 core/modules/node/src/Plugin/Search/NodeSearch.php \Drupal\node\Plugin\Search\NodeSearch::execute()
Executes the search.
Return value
array A structured list of search results.
Overrides SearchInterface::execute
File
- core/
modules/ node/ src/ Plugin/ Search/ NodeSearch.php, line 237
Class
- NodeSearch
- Handles searching for node entities using the Search module index.
Namespace
Drupal\node\Plugin\SearchCode
public function execute() {
if ($this
->isSearchExecutable()) {
$results = $this
->findResults();
if ($results) {
return $this
->prepareResults($results);
}
}
return [];
}