You are here

function vms_handler_filter_mlid::operator_options in Views Menu Support 7

Same name and namespace in other branches
  1. 8 handlers/vms_handler_filter_mlid.inc \vms_handler_filter_mlid::operator_options()

Provide simple equality operator.

Overrides views_handler_filter_equality::operator_options

1 call to vms_handler_filter_mlid::operator_options()
vms_handler_filter_mlid::admin_summary in handlers/vms_handler_filter_mlid.inc
Display the filter on the administrative summary.

File

handlers/vms_handler_filter_mlid.inc, line 15
Filter handler for allowing restricting integer fields based on currently active menu items (plus trails).

Class

vms_handler_filter_mlid
Filter to compare a field against currently active menu link item.

Code

function operator_options() {
  return array(
    '=' => t('Is in'),
    '!=' => t('Is not in'),
  );
}