function SearchQuery::searchExpression
Same name in other branches
- 7.x modules/search/search.extender.inc \SearchQuery::searchExpression()
- 9 core/modules/search/src/SearchQuery.php \Drupal\search\SearchQuery::searchExpression()
- 8.9.x core/modules/search/src/SearchQuery.php \Drupal\search\SearchQuery::searchExpression()
- 10 core/modules/search/src/SearchQuery.php \Drupal\search\SearchQuery::searchExpression()
Sets the search query expression.
Parameters
string $expression: A search string, which can contain keywords and options.
string $type: The search type. This maps to {search_index}.type in the database.
Return value
$this
File
-
core/
modules/ search/ src/ SearchQuery.php, line 200
Class
- SearchQuery
- Search query extender and helper functions.
Namespace
Drupal\searchCode
public function searchExpression($expression, $type) {
$this->searchExpression = $expression;
$this->type = $type;
// Add query tag.
$this->addTag('search_' . $type);
// Initialize conditions and status.
$this->conditions = $this->connection
->condition('AND');
$this->status = 0;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.