You are here

function quiz_ddlines_theme in Quiz 8.4

Same name and namespace in other branches
  1. 7.4 question_types/quiz_ddlines/quiz_ddlines.module \quiz_ddlines_theme()

Implements hook_theme().

File

question_types/quiz_ddlines/quiz_ddlines.module, line 42
The main file for Quiz drag and drop with lines.

Code

function quiz_ddlines_theme() {
  return array(
    'quiz_ddlines_response' => array(
      'variables' => array(
        'result' => array(),
      ),
      'path' => drupal_get_path('module', 'quiz_ddlines') . '/theme',
      'file' => 'quiz_ddlines.theme.inc',
    ),
  );
}