You are here

function matching_theme in Quiz 6.6

Same name and namespace in other branches
  1. 8.6 question_types/quiz_matching/quiz_matching.module \matching_theme()
  2. 8.4 question_types/matching/matching.module \matching_theme()
  3. 8.5 question_types/quiz_matching/quiz_matching.module \matching_theme()
  4. 6.3 question_types/matching/matching.module \matching_theme()
  5. 6.4 question_types/matching/matching.module \matching_theme()
  6. 6.5 question_types/matching/matching.module \matching_theme()
  7. 7.6 question_types/matching/matching.module \matching_theme()
  8. 7 question_types/matching/matching.module \matching_theme()
  9. 7.4 question_types/matching/matching.module \matching_theme()
  10. 7.5 question_types/matching/matching.module \matching_theme()

Implementation of hook_theme().

File

question_types/matching/matching.module, line 78
Matching question type for quiz module

Code

function matching_theme() {
  return array(
    'matching_question' => array(
      //'arguments' => array('question' => NULL, 'show_points' => NULL, 'show_feedback' => NULL),
      'file' => 'matching.theme.inc',
    ),
  );
}