You are here

public function NodeSearch::execute in Drupal 8

Same name and namespace in other branches
  1. 9 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 248

Class

NodeSearch
Handles searching for node entities using the Search module index.

Namespace

Drupal\node\Plugin\Search

Code

public function execute() {
  if ($this
    ->isSearchExecutable()) {
    $results = $this
      ->findResults();
    if ($results) {
      return $this
        ->prepareResults($results);
    }
  }
  return [];
}