You are here

function form_options_validate in Options Element 6

Same name and namespace in other branches
  1. 7 options_element.module \form_options_validate()

Validate the "options" form element type.

1 string reference to 'form_options_validate'
options_element_elements in ./options_element.module
Implementation of hook_elements().

File

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

Code

function form_options_validate($element, &$form_state) {
  module_load_include('inc', 'options_element');
  _form_options_validate($element, $form_state);
}