You are here

public function SearchApiViewsHandlerArgumentFulltext::option_definition in Search API 7

Specify the options this filter uses.

Overrides SearchApiViewsHandlerArgument::option_definition

File

contrib/search_api_views/includes/handler_argument_fulltext.inc, line 16
Contains SearchApiViewsHandlerArgumentFulltext.

Class

SearchApiViewsHandlerArgumentFulltext
Views argument handler class for handling fulltext fields.

Code

public function option_definition() {
  $options = parent::option_definition();
  $options['fields'] = array(
    'default' => array(),
  );
  $options['conjunction'] = array(
    'default' => 'AND',
  );
  return $options;
}