You are here

public static function SuggestionStorage::search in Autocomplete Search Suggestions 3.0.x

Same name and namespace in other branches
  1. 8.2 src/SuggestionStorage.php \Drupal\suggestion\SuggestionStorage::search()
  2. 8 src/SuggestionStorage.php \Drupal\suggestion\SuggestionStorage::search()

Search suggestions.

Parameters

string $ngram: The requested ngram.

int $start: The starting offset.

int $limit: The query limit.

Return value

array An array of suggestion objects.

1 call to SuggestionStorage::search()
SuggestionSearchForm::buildForm in src/Form/SuggestionSearchForm.php
The suggestion search form.

File

src/SuggestionStorage.php, line 283

Class

SuggestionStorage
Database CRUD.

Namespace

Drupal\suggestion

Code

public static function search($ngram, $start = NULL, $limit = 100) {
  $args = [
    ':ngram' => $ngram,
  ];
  if (is_numeric($start) && intval($limit)) {
    return \Drupal::database()
      ->queryRange("SELECT * FROM {suggestion} WHERE ngram LIKE :ngram ORDER BY ngram ASC", $start, $limit, $args)
      ->fetchAll();
  }
  return \Drupal::database()
    ->query("SELECT * FROM {suggestion} WHERE ngram LIKE :ngram ORDER BY ngram ASC", $args)
    ->fetchAll();
}