You are here

function content_multiple_value_after_build_proxy in Content Construction Kit (CCK) 6.3

Proxy function to call content_multiple_value_after_build(), because it might not be included yet when the form is processed and invokes the callback.

1 string reference to 'content_multiple_value_after_build_proxy'
content_multiple_value_form in includes/content.node_form.inc
Special handling to create form elements for multiple values.

File

./content.module, line 485
Allows administrators to associate custom fields to content types.

Code

function content_multiple_value_after_build_proxy($elements, &$form_state) {
  module_load_include('inc', 'content', 'includes/content.node_form');
  return content_multiple_value_after_build($elements, $form_state);
}