function options_element_theme in Options Element 6
Same name and namespace in other branches
- 7 options_element.module \options_element_theme()
Implementation of hook_theme().
File
- ./
options_element.module, line 107 - Defines an "options" form element type for entering select list options.
Code
function options_element_theme() {
return array(
'options' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'options_element.inc',
),
);
}