You are here

public function views_handler_filter_term_node_tid_depth::extra_options_form in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 modules/taxonomy/views_handler_filter_term_node_tid_depth.inc \views_handler_filter_term_node_tid_depth::extra_options_form()
  2. 6.2 modules/taxonomy/views_handler_filter_term_node_tid_depth.inc \views_handler_filter_term_node_tid_depth::extra_options_form()

Provide a form for setting options.

Overrides views_handler_filter_term_node_tid::extra_options_form

File

modules/taxonomy/views_handler_filter_term_node_tid_depth.inc, line 41
Definition of views_handler_filter_term_node_tid_depth.

Class

views_handler_filter_term_node_tid_depth
Filter handler for taxonomy terms with depth.

Code

public function extra_options_form(&$form, &$form_state) {
  parent::extra_options_form($form, $form_state);
  $form['depth'] = array(
    '#type' => 'weight',
    '#title' => t('Depth'),
    '#default_value' => $this->options['depth'],
    '#description' => t('The depth will match nodes tagged with terms in the hierarchy. For example, if you have the term "fruit" and a child term "apple", with a depth of 1 (or higher) then filtering for the term "fruit" will get nodes that are tagged with "apple" as well as "fruit". If negative, the reverse is true; searching for "apple" will also pick up nodes tagged with "fruit" if depth is -1 (or lower).'),
  );
}