You are here

function views_handler_filter_many_to_one_content::allowed_values in Content Construction Kit (CCK) 6

1 call to views_handler_filter_many_to_one_content::allowed_values()
views_handler_filter_many_to_one_content::get_value_options in includes/content.views.inc

File

includes/content.views.inc, line 195

Class

views_handler_filter_many_to_one_content
The subclass simply adds properties, for field-specific subclasses to use if they need to.

Code

function allowed_values() {
  $field = $this->content_field;
  $function = $field['module'] . '_allowed_values';
  $options = function_exists($function) ? $function($field) : content_allowed_values($field);
  return (array) $options;
}