]> git.mjollnir.org Git - moodle.git/commitdiff
adding enableoutcomes flag
authortoyomoyo <toyomoyo>
Thu, 19 Jul 2007 09:02:50 +0000 (09:02 +0000)
committertoyomoyo <toyomoyo>
Thu, 19 Jul 2007 09:02:50 +0000 (09:02 +0000)
admin/settings/grades.php

index e7b382600e4682c041d3b2fe3bbd3c06905f9831..66174efa8f15edc3b9bc81b0d248fb6881c69fd0 100644 (file)
@@ -6,6 +6,9 @@
 
 $temp = new admin_settingpage('gradessettings', get_string('gradessettings'));
 $temp->add(new admin_setting_special_gradeexport());
+
+$temp->add(new admin_setting_configcheckbox('enableoutcomes', get_string('enableoutcomes', 'admin'), get_string('configenableoutcomes', 'admin'), 0, PARAM_INT));
+
 $ADMIN->add('grades', $temp);
 
 
@@ -69,5 +72,4 @@ foreach (get_list_of_plugins('grade/export') as $plugin) {
         $ADMIN->add('gradeexports', $settings);
     }
 }
-
 ?>