function form_example_theme

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

form_example/form_example.module, line 228

Code

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