You are here

function views_handler_filter_term_node_tid::expose_form_right in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 modules/taxonomy/views_handler_filter_term_node_tid.inc \views_handler_filter_term_node_tid::expose_form_right()

Handle the 'right' side fo the exposed options form.

Overrides views_handler_filter_in_operator::expose_form_right

File

modules/taxonomy/views_handler_filter_term_node_tid.inc, line 282

Class

views_handler_filter_term_node_tid
Filter by term id

Code

function expose_form_right(&$form, &$form_state) {
  parent::expose_form_right($form, $form_state);
  if ($this->options['type'] != 'select') {
    unset($form['expose']['reduce']);
  }
}