You are here

function form_type_options_value in Options Element 7

Same name and namespace in other branches
  1. 6 options_element.module \form_type_options_value()

This function adjusts the value of the element from a text value to an array.

File

./options_element.module, line 139
Defines an "options" form element type for entering select list options.

Code

function form_type_options_value(&$element, $edit = FALSE) {
  module_load_include('inc', 'options_element');
  return _form_type_options_value($element, $edit);
}