1 search.extender.inc public SearchQuery::setOption($option, $column)

Applies a search option and removes it from the search query string.

These options are in the form option:value,value2,value3.

Parameters

$option: Name of the option.

$column: Name of the database column to which the value should be applied.

Return value

TRUE if a value for that option was found, FALSE if not.:

File

core/modules/search/search.extender.inc, line 167
Search query extender and helper functions.

Class

SearchQuery
Do a query on the full-text search index for a word or words.

Code

public function setOption($option, $column) {
  if ($values = search_expression_extract($this->searchExpression, $option)) {
    $or = db_or();
    foreach (explode(',', $values) as $value) {
      $or->condition($column, $value);
    }
    $this->condition($or);
    $this->searchExpression = search_expression_insert($this->searchExpression, $option);
    return TRUE;
  }
  return FALSE;
}