You are here

function form_example_element_info in Examples for Developers 7

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

form_example/form_example.module, line 216
Examples demonstrating the Drupal Form API.

Code

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