From 2d9b4f4bf5e3a0d23c5c5481bb7ebbf832c01d4b Mon Sep 17 00:00:00 2001 From: julmis Date: Wed, 2 Jun 2004 18:00:12 +0000 Subject: [PATCH] print_timer_selector function added for QuizTimer --- lib/weblib.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/weblib.php b/lib/weblib.php index f2ae1ec146..27849216dc 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -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 -- 2.39.5