You are here

public function views_handler_filter::admin_summary in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_filter.inc \views_handler_filter::admin_summary()
  2. 6.2 handlers/views_handler_filter.inc \views_handler_filter::admin_summary()

Display the filter on the administrative summary.

Overrides views_handler::admin_summary

10 methods override views_handler_filter::admin_summary()
views_handler_filter_boolean_operator::admin_summary in handlers/views_handler_filter_boolean_operator.inc
Display the filter on the administrative summary.
views_handler_filter_fields_compare::admin_summary in handlers/views_handler_filter_fields_compare.inc
Display the filter on the administrative summary.
views_handler_filter_history_user_timestamp::admin_summary in modules/node/views_handler_filter_history_user_timestamp.inc
Display the filter on the administrative summary.
views_handler_filter_in_operator::admin_summary in handlers/views_handler_filter_in_operator.inc
Display the filter on the administrative summary.
views_handler_filter_node_access::admin_summary in modules/node/views_handler_filter_node_access.inc
Display the filter on the administrative summary.

... See full list

File

handlers/views_handler_filter.inc, line 183
Definitions of views_handler_filter and views_handler_filter_broken.

Class

views_handler_filter
Base class for filters.

Code

public function admin_summary() {
  return check_plain((string) $this->operator) . ' ' . check_plain((string) $this->value);
}