You are here

function quiz_question_update_dependencies in Quiz 7.4

Make sure the matching question has finished its update before starting this one

File

question_types/quiz_question/quiz_question.install, line 113
The installer file for quiz_question.

Code

function quiz_question_update_dependencies() {
  $dependencies = array();
  if (module_exists("matching")) {
    $dependencies['quiz_question'][7402] = array(
      'matching' => 7400,
    );
  }
  return $dependencies;
}