You are here

function quiz_question_theme in Quiz 7.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. 8.5 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  4. 6.6 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  5. 6.3 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  6. 6.4 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  7. 6.5 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  8. 7.6 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  9. 7 question_types/quiz_question/quiz_question.module \quiz_question_theme()
  10. 7.4 question_types/quiz_question/quiz_question.module \quiz_question_theme()

Implements hook_theme().

File

question_types/quiz_question/quiz_question.module, line 49
Quiz Question module.

Code

function quiz_question_theme() {
  $hooks = 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',
    ),
  );
  $hooks['quiz_question_feedback'] = array(
    'variables' => array(),
    'pattern' => 'quiz_question_feedback__',
  );
  return $hooks;
}