You are here

function apachesolr_views_handler_argument::option_definition in Apache Solr Views 6

File

handlers/apachesolr_views_handler_argument.inc, line 24

Class

apachesolr_views_handler_argument
Class that allows searching the site with Apache Solr through a view.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['break_phrase'] = array(
    'default' => FALSE,
  );
  $options['not'] = array(
    'default' => FALSE,
  );
  return $options;
}