You are here

function vms_handler_filter_mlid::admin_summary in Views Menu Support 7

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

Display the filter on the administrative summary.

Overrides views_handler_filter::admin_summary

File

handlers/vms_handler_filter_mlid.inc, line 37
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 admin_summary() {
  $options = vms_mlid_query_types();
  $operators = $this
    ->operator_options();
  return check_plain($operators[$this->operator] . ' ' . $options[$this->value]);
}