You are here

function views_handler_filter_in_operator::construct in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_filter_in_operator.inc \views_handler_filter_in_operator::construct()
  2. 7.3 handlers/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

handlers/views_handler_filter_in_operator.inc, line 12

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;
}