You are here

function matrix_handler_filter::operator in Matrix field 7.2

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

Overrides views_handler_filter_string::operator

1 call to matrix_handler_filter::operator()
matrix_handler_filter::op_equal in views/matrix_handler_filter.inc

File

views/matrix_handler_filter.inc, line 180

Class

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

Code

function operator() {
  return $this->operator == '=' ? 'LIKE' : 'NOT LIKE';
}