You are here

function cshs_handler_filter_term_node_tid::admin_summary in Client-side Hierarchical Select 7

Display the filter on the administrative summary.

Overrides views_handler_filter_term_node_tid::admin_summary

File

includes/handlers/cshs_handler_filter_term_node_tid.inc, line 94
Definition of cshs_handler_filter_term_node_tid.

Class

cshs_handler_filter_term_node_tid
Filter by term id (including selection by client-side hierarchical select).

Code

function admin_summary() {

  // Set up $this->value_options for the parent summary.
  $this->value_options = array();
  if ($this->value == 'All') {
    $this->value = NULL;
  }
  return parent::admin_summary();
}