You are here

function quiz_question_theme in Quiz 8.4

Same name and namespace in other branches
  1. 8.6 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  2. 8.5 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  3. 6.6 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()

Implements hook_theme().

File

question_types/quiz_question/quiz_question.module, line 53
Quiz Question module. This module provides the basic facilities for adding quiz question types to a quiz.

Code

function quiz_question_theme() {
  return array(
    'quiz_question_creation_form' => array(
      'render element' => 'form',
      'file' => 'quiz_question.theme.inc',
    ),
    'quiz_question_navigation_form' => array(
      'render element' => 'form',
      'file' => 'quiz_question.theme.inc',
    ),
  );
}