You are here

function content_handler_argument_many_to_one::allowed_values in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 includes/views/handlers/content_handler_argument_many_to_one.inc \content_handler_argument_many_to_one::allowed_values()
2 calls to content_handler_argument_many_to_one::allowed_values()
content_handler_argument_many_to_one::summary_name in includes/views/handlers/content_handler_argument_many_to_one.inc
content_handler_argument_many_to_one::title_query in includes/views/handlers/content_handler_argument_many_to_one.inc

File

includes/views/handlers/content_handler_argument_many_to_one.inc, line 41
Handler for 'content_handler_argument_many_to_one' style.

Class

content_handler_argument_many_to_one
@file Handler for 'content_handler_argument_many_to_one' style.

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;
}