From 4d502df33f5931f036ed90afc642de5ecafce696 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Mon, 3 Dec 2007 20:07:24 +0000 Subject: [PATCH] MDL-12389 Removed testing code --- grade/export/grade_export_form.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/grade/export/grade_export_form.php b/grade/export/grade_export_form.php index 925a31c3e23..a48910b6232 100755 --- a/grade/export/grade_export_form.php +++ b/grade/export/grade_export_form.php @@ -63,15 +63,6 @@ class grade_export_form extends moodleform { $mform->addElement('select', 'display', get_string('gradeexportdisplaytype', 'grades'), $options); $mform->setDefault('display', $CFG->grade_export_displaytype); - $mform->addElement('advcheckbox', 'test1', 'Test 1', null, array('group' => 2)); - $mform->addElement('advcheckbox', 'test2', 'Test 2', null, array('group' => 2)); - $mform->addElement('selectallornone', 2); - $mform->addElement('advcheckbox', 'test3', 'Test 3', null, array('group' => 3)); - $mform->addElement('advcheckbox', 'test4', 'Test 4', null, array('group' => 3)); - $mform->addElement('selectallornone', 3, get_string("checkallornone"), array('style' => 'font-weight: bold;'), 1); - $mform->setDefault('test3', 1); - $mform->setDefault('test4', 1); - //$default_gradedecimals = $CFG->grade_export_decimalpoints; $options = array(0=>0, 1=>1, 2=>2, 3=>3, 4=>4, 5=>5); $mform->addElement('select', 'decimals', get_string('gradeexportdecimalpoints', 'grades'), $options);