You are here

class content_taxonomy_handler_filter_many_to_one in Content Taxonomy 6

Same name and namespace in other branches
  1. 6.2 includes/views/content_taxonomy_handler_filter_many_to_one.inc \content_taxonomy_handler_filter_many_to_one

Subclass of views_handler_filter_many_to_one_content

provides values for the filters unsets the empty value for non required fields, which is added content_taxonomy_allowed_values

Hierarchy

Expanded class hierarchy of content_taxonomy_handler_filter_many_to_one

1 string reference to 'content_taxonomy_handler_filter_many_to_one'
content_taxonomy_field_settings in ./content_taxonomy.module
Implementation of hook_field_settings().

File

includes/views/content_taxonomy_handler_filter_many_to_one.inc, line 9

View source
class content_taxonomy_handler_filter_many_to_one extends content_handler_filter_many_to_one {
  var $content_field;
  function construct() {
    parent::construct();
  }
  function get_value_options() {
    $options = content_taxonomy_allowed_values($this->content_field);
    unset($options['']);
    $this->value_options = $options;
  }

}

Members