function views_handler_filter_in_operator::construct

Views handlers use a special construct function.

Allows it to more easily construct them with variable arguments.

Overrides views_object::construct

File

handlers/views_handler_filter_in_operator.inc, line 35

Class

views_handler_filter_in_operator
Simple filter to handle matching of multiple options using checkboxes.

Code

public function construct() {
  parent::construct();
  $this->value_title = t('Options');
  $this->value_options = NULL;
}