From 0abb50adb748051e6fc793d950f7f93e67c8a3e6 Mon Sep 17 00:00:00 2001 From: Nadav Kavalerchik Date: Sat, 10 Aug 2013 22:08:21 +0300 Subject: [PATCH] Enable support for a full year of 36 reacquiring weekly sessions Hi Dan, Teachers asked my to extend the available reacquiring weekly sessions in the form. Hope it is agreeable by you. It now support a full year (two academic semesters) of 36 weeks. What do you think? --- add_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add_form.php b/add_form.php index ae09d6c..dabaeb1 100644 --- a/add_form.php +++ b/add_form.php @@ -135,7 +135,7 @@ class mod_attendance_add_form extends moodleform { $mform->addGroup($sdays, 'sdays', get_string('sessiondays', 'attendance'), array('     '), true); $mform->disabledIf('sdays', 'addmultiply', 'notchecked'); - $period = array(1=>1, 2, 3, 4, 5, 6, 7, 8); + $period = array(1=>1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36); $periodgroup = array(); $periodgroup[] =& $mform->createElement('select', 'period', '', $period, false, true); $periodgroup[] =& $mform->createElement('static', 'perioddesc', '', get_string('week', 'attendance'));