1 options.module options_theme()

Implements hook_theme().

File

core/modules/field/modules/options/options.module, line 10
Defines selection, check box and radio button widgets for text and numeric fields.

Code

function options_theme() {
  return array(
    'options_none' => array(
      'variables' => array('instance' => NULL, 'option' => NULL),
      'file' => 'options.theme.inc',
    ),
    'options' => array(
      'render element' => 'element',
      'file' => 'options.theme.inc',
    ),
  );
}