1 form_example.module form_example_element_info()

Implements hook_element_info().

To keep the various pieces of the example together in external files, this just returns _form_example_elements().

Related topics

File

modules/examples/form_example/form_example.module, line 190
Hook implementations for the Form Example module.

Code

function form_example_element_info() {
  require_once 'form_example_elements.inc';
  return _form_example_element_info();
}