1 views_handler_filter_fields_compare.inc views_handler_filter_fields_compare::fields_operator_options()

Provide a list of all operators.

File

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

Class

views_handler_filter_fields_compare

Code

function fields_operator_options() {
  return array(
    '<' => t('Is less than'),
    '<=' => t('Is less than or equal to'),
    '=' => t('Is equal to'),
    '<>' => t('Is not equal to'),
    '>=' => t('Is greater than or equal to'),
    '>' => t('Is greater than')
  );
}