You are here

function quiz_question_theme in Quiz 8.5

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. 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 40
Quiz Question module.

Code

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