You are here

function matrix_handler_filter::construct in Matrix field 7.2

Same name and namespace in other branches
  1. 8.2 views/matrix_handler_filter.inc \matrix_handler_filter::construct()

Views handlers use a special construct function.

Allows it to more easily construct them with variable arguments.

Overrides views_object::construct

File

views/matrix_handler_filter.inc, line 10

Class

matrix_handler_filter
Basic textfield filter to handle string filtering commands including equality, like, not like, etc.

Code

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