You are here

function choices_theme in Poll Improved 7

Implements hook_theme().

File

modules/choices/choices.module, line 192
Defines simple choices field.

Code

function choices_theme() {
  $path = drupal_get_path('module', 'choices');
  return array(
    'choices_choices' => array(
      'render element' => 'element',
      'path' => "{$path}/theme",
      'file' => 'choices.theme.inc',
    ),
    'choices_radiobtn' => array(
      'render element' => 'element',
      'path' => "{$path}/theme",
      'file' => 'choices.theme.inc',
    ),
  );
}