Allows modules to declare their own Form API element types and specify their default values.
This hook allows modules to declare their own form element types and to specify their default values. The values returned by this hook will be merged with the elements returned by hook_form() implementations and so can return defaults for any Form APIs keys in addition to those explicitly mentioned below.
Each of the form element types defined by this hook is assumed to have a matching theme function, e.g. theme_elementtype(), which should be registered with hook_theme() as normal.
For more information about custom element types see the explanation at http://drupal.org/node/169815.
An associative array describing the element types being defined. The array contains a sub-array for each element type, with the machine-readable type name as the key. Each sub-array has a number of possible attributes:
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
function hook_element_info() {
$types['filter_format'] = array(
'#input' => TRUE,
);
return $types;
}