function quiz_drag_drop_theme in Quiz Drag Drop 7
Implements hook_theme().
File
- ./
quiz_drag_drop.module, line 57 - The main file for quiz_drag_drop.
Code
function quiz_drag_drop_theme($existing, $type, $theme, $path) {
return array(
'quiz_drag_drop_response' => array(
'variables' => array(
'data' => array(),
),
'path' => drupal_get_path('module', 'quiz_drag_drop') . '/theme',
'file' => 'quiz_drag_drop.theme.inc',
),
'quiz_drag_drop_answer_form' => array(
'variables' => array(
'data' => array(),
),
'path' => drupal_get_path('module', 'quiz_drag_drop') . '/theme',
'file' => 'quiz_drag_drop.theme.inc',
),
);
}