You are here

function choice_theme in Quiz 6.6

File

question_types/choice/choice.module, line 56
The main file for choice.

Code

function choice_theme($existing, $type, $theme, $path) {
  return array(
    'choice_creation_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'path' => drupal_get_path('module', 'choice') . '/theme',
      'file' => 'choice.theme.inc',
    ),
    'choice_alternative_creation' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'path' => drupal_get_path('module', 'choice') . '/theme',
      'template' => 'choice-alternative-creation',
    ),
    'choice_alternative' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'path' => drupal_get_path('module', 'choice') . '/theme',
      'template' => 'choice-alternative',
    ),
  );
}