2004-12-23 07:09:33 +00:00
|
|
|
<?php // $Id$
|
|
|
|
|
|
|
|
// This file is generally only included from upgrade_activity_modules()
|
|
|
|
// It defines default values for any important configuration variables
|
|
|
|
|
|
|
|
$defaults = array (
|
2005-05-06 06:24:04 +00:00
|
|
|
'quiz_review' => hexdec('ffffff'),
|
2004-12-23 07:09:33 +00:00
|
|
|
'quiz_attemptonlast' => 0,
|
|
|
|
'quiz_attempts' => 0,
|
|
|
|
'quiz_grademethod' => '',
|
2005-02-14 18:56:53 +00:00
|
|
|
'quiz_decimalpoints' => 2,
|
2005-05-06 06:24:04 +00:00
|
|
|
'quiz_maximumgrade' => 10,
|
2004-12-23 07:09:33 +00:00
|
|
|
'quiz_password' => '',
|
|
|
|
'quiz_popup' => 0,
|
2005-02-18 17:20:06 +00:00
|
|
|
'quiz_questionsperpage' => 0,
|
2004-12-23 07:09:33 +00:00
|
|
|
'quiz_shuffleanswers' => 1,
|
|
|
|
'quiz_shufflequestions' => 0,
|
|
|
|
'quiz_subnet' => '',
|
|
|
|
'quiz_timelimit' => 0,
|
2005-05-06 06:24:04 +00:00
|
|
|
'quiz_optionflags' => 1,
|
2005-05-07 14:29:42 +00:00
|
|
|
'quiz_penaltyscheme' => 1,
|
2006-03-12 19:23:55 +00:00
|
|
|
'quiz_delay1' => 0,
|
|
|
|
'quiz_delay2' => 0,
|
2005-05-06 06:24:04 +00:00
|
|
|
|
|
|
|
'quiz_fix_review' => 0,
|
2004-12-23 07:09:33 +00:00
|
|
|
'quiz_fix_attemptonlast' => 0,
|
|
|
|
'quiz_fix_attempts' => 0,
|
|
|
|
'quiz_fix_grademethod' => 0,
|
2005-02-14 18:56:53 +00:00
|
|
|
'quiz_fix_decimalpoints' => 0,
|
2004-12-23 07:09:33 +00:00
|
|
|
'quiz_fix_password' => 0,
|
|
|
|
'quiz_fix_popup' => 0,
|
2005-02-18 17:20:06 +00:00
|
|
|
'quiz_fix_questionsperpage' => 0,
|
2004-12-23 07:09:33 +00:00
|
|
|
'quiz_fix_shuffleanswers' => 0,
|
|
|
|
'quiz_fix_shufflequestions' => 0,
|
|
|
|
'quiz_fix_subnet' => 0,
|
2005-05-06 06:24:04 +00:00
|
|
|
'quiz_fix_timelimit' => 0,
|
|
|
|
'quiz_fix_adaptive' => 0,
|
2005-07-06 06:44:18 +00:00
|
|
|
'quiz_fix_penaltyscheme' => 0,
|
2006-02-08 04:44:57 +00:00
|
|
|
'quiz_fix_delay1' => 0,
|
|
|
|
'quiz_fix_delay2' => 0,
|
2006-03-12 19:23:55 +00:00
|
|
|
|
2004-12-23 07:09:33 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
?>
|