You are here

public function ParseModePluginBase::getConjunction in Search API 8

Retrieves the default conjunction.

Return value

string The default conjunction to be used when parsing keywords. Can be either "AND" or "OR".

Overrides ParseModeInterface::getConjunction

2 calls to ParseModePluginBase::getConjunction()
Phrase::parseInput in src/Plugin/search_api/parse_mode/Phrase.php
Parses search keys input by the user.
Terms::parseInput in src/Plugin/search_api/parse_mode/Terms.php
Parses search keys input by the user.

File

src/ParseMode/ParseModePluginBase.php, line 69

Class

ParseModePluginBase
Defines a base class from which other parse mode classes may extend.

Namespace

Drupal\search_api\ParseMode

Code

public function getConjunction() {
  return $this->conjunction;
}