mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 12:34:28 +01:00
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php // $Id$
|
|
|
|
// This file is generally only included from upgrade_activity_modules()
|
|
// It defines default values for any important configuration variables
|
|
|
|
$defaults = array (
|
|
'quiz_allowreview' => 1,
|
|
'quiz_attemptonlast' => 0,
|
|
'quiz_attempts' => 0,
|
|
'quiz_grademethod' => '',
|
|
'quiz_decimalpoints' => 2,
|
|
'quiz_maximumgrade' => 0,
|
|
'quiz_password' => '',
|
|
'quiz_popup' => 0,
|
|
'quiz_questionsperpage' => 0,
|
|
'quiz_showanswer' => '',
|
|
'quiz_showfeedback' => '',
|
|
'quiz_shuffleanswers' => 1,
|
|
'quiz_shufflequestions' => 0,
|
|
'quiz_subnet' => '',
|
|
'quiz_timelimit' => 0,
|
|
|
|
'quiz_fix_allowreview' => 0,
|
|
'quiz_fix_attemptonlast' => 0,
|
|
'quiz_fix_attempts' => 0,
|
|
'quiz_fix_grademethod' => 0,
|
|
'quiz_fix_decimalpoints' => 0,
|
|
'quiz_fix_maximumgrade' => 0,
|
|
'quiz_fix_password' => 0,
|
|
'quiz_fix_popup' => 0,
|
|
'quiz_fix_questionsperpage' => 0,
|
|
'quiz_fix_showanswer' => 0,
|
|
'quiz_fix_showfeedback' => 0,
|
|
'quiz_fix_shuffleanswers' => 0,
|
|
'quiz_fix_shufflequestions' => 0,
|
|
'quiz_fix_subnet' => 0,
|
|
'quiz_fix_timelimit' => 0
|
|
);
|
|
|
|
?>
|