You are here

function form_options_validate in Options Element 7

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

Validate the "options" form element type.

1 string reference to 'form_options_validate'
options_element_element_info in ./options_element.module
Implements hook_element_info().

File

./options_element.module, line 131
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);
}