You are here

function content_taxonomy_handler_filter_many_to_one::get_value_options in Content Taxonomy 6.2

Same name and namespace in other branches
  1. 6 includes/views/content_taxonomy_handler_filter_many_to_one.inc \content_taxonomy_handler_filter_many_to_one::get_value_options()

File

includes/views/content_taxonomy_handler_filter_many_to_one.inc, line 16

Class

content_taxonomy_handler_filter_many_to_one
Subclass of views_handler_filter_many_to_one_content

Code

function get_value_options() {
  $options = content_taxonomy_allowed_values($this->content_field);
  unset($options['']);
  $this->value_options = $options;
}