1 form_example.module form_example_theme($existing, $type, $theme, $path)

Implements hook_theme().

The only theme implementation is by the element example. To keep the various parts of the example together, this actually returns _form_example_element_theme().

Related topics

File

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

Code

function form_example_theme($existing, $type, $theme, $path) {
  require_once 'form_example_elements.inc';
  return _form_example_element_theme($existing, $type, $theme, $path);
}