You are here

function quiz_question_theme in Quiz 6.6

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

Implementation of hook_theme().

File

question_types/quiz_question/quiz_question.module, line 79
Quiz Question module. This module provides the basic facilities for adding quiz question types to a quiz. While you can create standard Quiz question types simply by implementing the appropriate hooks, this module provides a framework that makes…

Code

function quiz_question_theme() {
  return array(
    'quiz_question_report' => array(
      'arguments' => array(
        'show_points' => NULL,
        'show_feedback' => NULL,
      ),
      'file' => 'quiz_question.theme.inc',
    ),
    'quiz_question_creation_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'quiz_question.theme.inc',
    ),
  );
}