You are here

function options_element_theme in Options Element 7

Same name and namespace in other branches
  1. 6 options_element.module \options_element_theme()

Implementation of hook_theme().

File

./options_element.module, line 108
Defines an "options" form element type for entering select list options.

Code

function options_element_theme() {
  return array(
    'options' => array(
      'render element' => 'element',
      'file' => 'options_element.inc',
    ),
  );
}