1 views_handler_filter_in_operator.inc views_handler_filter_in_operator::construct()

Views handlers use a special construct function so that we can more easily construct them with variable arguments.

Overrides views_object::construct

File

core/modules/views/handlers/views_handler_filter_in_operator.inc, line 33
Definition of views_handler_filter_in_operator.

Class

views_handler_filter_in_operator
Simple filter to handle matching of multiple options selectable via checkboxes

Code

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