function options_theme in Drupal 7
Implements hook_theme().
File
- modules/
field/ modules/ options/ options.module, line 24 - 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,
),
),
);
}