function list_boolean_allowed_values_callback
Form element #value_callback: assembles the allowed values for 'boolean' fields.
1 string reference to 'list_boolean_allowed_values_callback'
- list_field_settings_form in modules/
field/ modules/ list/ list.module - Implements hook_field_settings_form().
File
-
modules/
field/ modules/ list/ list.module, line 203
Code
function list_boolean_allowed_values_callback($element, $input, $form_state) {
$on = drupal_array_get_nested_value($form_state['input'], $element['#on_parents']);
$off = drupal_array_get_nested_value($form_state['input'], $element['#off_parents']);
return array(
$off,
$on,
);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.