function options_theme
7.x options.module | options_theme() |
Implements hook_theme().
File
- drupal-7.x/
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),
),
);
}