mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 16:32:18 +02:00
print_timer_selector function added for QuizTimer
This commit is contained in:
parent
9cc93eb3a5
commit
2d9b4f4bf5
@ -1929,6 +1929,21 @@ function print_time_selector($hour, $minute, $currenttime=0, $step=5) {
|
||||
choose_from_menu($minutes, $minute, $currentdate['minutes'], "");
|
||||
}
|
||||
|
||||
function print_timer_selector($timelimit = 0) {
|
||||
/// Prints time limit value selector
|
||||
/// to add or edit quiz's time limit
|
||||
|
||||
global $CFG;
|
||||
|
||||
// Max timelimit is sessiontimeout - 10 minutes.
|
||||
$maxvalue = ($CFG->sessiontimeout / 60) - 10;
|
||||
|
||||
for ($i=0; $i<=$maxvalue; $i++) {
|
||||
$minutes[$i] = sprintf("%02d",$i);
|
||||
}
|
||||
choose_from_menu($minutes, "timelimit", $timelimit,"");
|
||||
}
|
||||
|
||||
function print_grade_menu($courseid, $name, $current, $includenograde=true) {
|
||||
/// Prints a grade menu (as part of an existing form) with help
|
||||
/// Showing all possible numerical grades and scales
|
||||
|
Loading…
x
Reference in New Issue
Block a user