Merge branch 'MDL-40412_m25' of git://github.com/merrill-oakland/moodle into MOODLE_2...
[moodle.git] / admin / settings / grades.php
blobd2cc43ebcb9b552be26984cd40b93a6d9b1fa1a3
1 <?php
3 // This file defines settingpages and externalpages under the "grades" section
5 if (has_capability('moodle/grade:manage', $systemcontext)
6 or has_capability('moodle/grade:manageletters', $systemcontext)) { // speedup for non-admins, add all caps used on this page
8 require_once $CFG->libdir.'/grade/constants.php';
9 $display_types = array(GRADE_DISPLAY_TYPE_REAL => new lang_string('real', 'grades'),
10 GRADE_DISPLAY_TYPE_PERCENTAGE => new lang_string('percentage', 'grades'),
11 GRADE_DISPLAY_TYPE_LETTER => new lang_string('letter', 'grades'),
12 GRADE_DISPLAY_TYPE_REAL_PERCENTAGE => new lang_string('realpercentage', 'grades'),
13 GRADE_DISPLAY_TYPE_REAL_LETTER => new lang_string('realletter', 'grades'),
14 GRADE_DISPLAY_TYPE_LETTER_REAL => new lang_string('letterreal', 'grades'),
15 GRADE_DISPLAY_TYPE_LETTER_PERCENTAGE => new lang_string('letterpercentage', 'grades'),
16 GRADE_DISPLAY_TYPE_PERCENTAGE_LETTER => new lang_string('percentageletter', 'grades'),
17 GRADE_DISPLAY_TYPE_PERCENTAGE_REAL => new lang_string('percentagereal', 'grades')
19 asort($display_types);
21 // General settings
23 $temp = new admin_settingpage('gradessettings', new lang_string('generalsettings', 'grades'), 'moodle/grade:manage');
24 if ($ADMIN->fulltree) {
26 // new CFG variable for gradebook (what roles to display)
27 $temp->add(new admin_setting_special_gradebookroles());
29 // enable outcomes checkbox now in subsystems area
31 $temp->add(new admin_setting_grade_profilereport());
33 $temp->add(new admin_setting_configselect('grade_aggregationposition', new lang_string('aggregationposition', 'grades'),
34 new lang_string('aggregationposition_help', 'grades'), GRADE_REPORT_AGGREGATION_POSITION_LAST,
35 array(GRADE_REPORT_AGGREGATION_POSITION_FIRST => new lang_string('positionfirst', 'grades'),
36 GRADE_REPORT_AGGREGATION_POSITION_LAST => new lang_string('positionlast', 'grades'))));
38 $temp->add(new admin_setting_regradingcheckbox('grade_includescalesinaggregation', new lang_string('includescalesinaggregation', 'grades'), new lang_string('includescalesinaggregation_help', 'grades'), 1));
40 $temp->add(new admin_setting_configcheckbox('grade_hiddenasdate', new lang_string('hiddenasdate', 'grades'), new lang_string('hiddenasdate_help', 'grades'), 0));
42 // enable publishing in exports/imports
43 $temp->add(new admin_setting_configcheckbox('gradepublishing', new lang_string('gradepublishing', 'grades'), new lang_string('gradepublishing_help', 'grades'), 0));
45 $temp->add(new admin_setting_configselect('grade_export_displaytype', new lang_string('gradeexportdisplaytype', 'grades'),
46 new lang_string('gradeexportdisplaytype_desc', 'grades'), GRADE_DISPLAY_TYPE_REAL, $display_types));
48 $temp->add(new admin_setting_configselect('grade_export_decimalpoints', new lang_string('gradeexportdecimalpoints', 'grades'),
49 new lang_string('gradeexportdecimalpoints_desc', 'grades'), 2,
50 array( '0' => '0',
51 '1' => '1',
52 '2' => '2',
53 '3' => '3',
54 '4' => '4',
55 '5' => '5')));
56 $temp->add(new admin_setting_configselect('grade_navmethod', new lang_string('navmethod', 'grades'), null, 0,
57 array(GRADE_NAVMETHOD_DROPDOWN => new lang_string('dropdown', 'grades'),
58 GRADE_NAVMETHOD_TABS => new lang_string('tabs', 'grades'),
59 GRADE_NAVMETHOD_COMBO => new lang_string('combo', 'grades'))));
61 $temp->add(new admin_setting_configtext('grade_export_userprofilefields', new lang_string('gradeexportuserprofilefields', 'grades'), new lang_string('gradeexportuserprofilefields_desc', 'grades'), 'firstname,lastname,idnumber,institution,department,email', PARAM_TEXT));
63 $temp->add(new admin_setting_configtext('grade_export_customprofilefields', new lang_string('gradeexportcustomprofilefields', 'grades'), new lang_string('gradeexportcustomprofilefields_desc', 'grades'), '', PARAM_TEXT));
65 $temp->add(new admin_setting_configcheckbox('recovergradesdefault', new lang_string('recovergradesdefault', 'grades'), new lang_string('recovergradesdefault_help', 'grades'), 0));
67 $temp->add(new admin_setting_special_gradeexport());
69 $temp->add(new admin_setting_special_gradelimiting());
71 $ADMIN->add('grades', $temp);
73 /// Grade category settings
74 $temp = new admin_settingpage('gradecategorysettings', new lang_string('gradecategorysettings', 'grades'), 'moodle/grade:manage');
75 if ($ADMIN->fulltree) {
76 $temp->add(new admin_setting_configcheckbox('grade_hideforcedsettings', new lang_string('hideforcedsettings', 'grades'), new lang_string('hideforcedsettings_help', 'grades'), '1'));
78 $strnoforce = new lang_string('noforce', 'grades');
80 // Aggregation type
81 $options = array(GRADE_AGGREGATE_MEAN =>new lang_string('aggregatemean', 'grades'),
82 GRADE_AGGREGATE_WEIGHTED_MEAN =>new lang_string('aggregateweightedmean', 'grades'),
83 GRADE_AGGREGATE_WEIGHTED_MEAN2 =>new lang_string('aggregateweightedmean2', 'grades'),
84 GRADE_AGGREGATE_EXTRACREDIT_MEAN=>new lang_string('aggregateextracreditmean', 'grades'),
85 GRADE_AGGREGATE_MEDIAN =>new lang_string('aggregatemedian', 'grades'),
86 GRADE_AGGREGATE_MIN =>new lang_string('aggregatemin', 'grades'),
87 GRADE_AGGREGATE_MAX =>new lang_string('aggregatemax', 'grades'),
88 GRADE_AGGREGATE_MODE =>new lang_string('aggregatemode', 'grades'),
89 GRADE_AGGREGATE_SUM =>new lang_string('aggregatesum', 'grades'));
91 $defaultvisible = array(GRADE_AGGREGATE_MEAN, GRADE_AGGREGATE_WEIGHTED_MEAN, GRADE_AGGREGATE_WEIGHTED_MEAN2,
92 GRADE_AGGREGATE_EXTRACREDIT_MEAN, GRADE_AGGREGATE_MEDIAN, GRADE_AGGREGATE_MIN,
93 GRADE_AGGREGATE_MAX, GRADE_AGGREGATE_MODE, GRADE_AGGREGATE_SUM);
95 $defaults = array('value'=>GRADE_AGGREGATE_WEIGHTED_MEAN2, 'forced'=>false, 'adv'=>false);
96 $temp->add(new admin_setting_gradecat_combo('grade_aggregation', new lang_string('aggregation', 'grades'), new lang_string('aggregation_help', 'grades'), $defaults, $options));
98 $temp->add(new admin_setting_configmultiselect('grade_aggregations_visible', new lang_string('aggregationsvisible', 'grades'),
99 new lang_string('aggregationsvisiblehelp', 'grades'), $defaultvisible, $options));
101 $options = array(0 => new lang_string('no'), 1 => new lang_string('yes'));
103 $defaults = array('value'=>1, 'forced'=>false, 'adv'=>true);
104 $temp->add(new admin_setting_gradecat_combo('grade_aggregateonlygraded', new lang_string('aggregateonlygraded', 'grades'),
105 new lang_string('aggregateonlygraded_help', 'grades'), $defaults, $options));
106 $defaults = array('value'=>0, 'forced'=>false, 'adv'=>true);
107 $temp->add(new admin_setting_gradecat_combo('grade_aggregateoutcomes', new lang_string('aggregateoutcomes', 'grades'),
108 new lang_string('aggregateoutcomes_help', 'grades'), $defaults, $options));
109 $temp->add(new admin_setting_gradecat_combo('grade_aggregatesubcats', new lang_string('aggregatesubcats', 'grades'),
110 new lang_string('aggregatesubcats_help', 'grades'), $defaults, $options));
112 $options = array(0 => new lang_string('none'));
113 for ($i=1; $i<=20; $i++) {
114 $options[$i] = $i;
117 $defaults['value'] = 0;
118 $defaults['forced'] = true;
119 $temp->add(new admin_setting_gradecat_combo('grade_keephigh', new lang_string('keephigh', 'grades'),
120 new lang_string('keephigh_help', 'grades'), $defaults, $options));
121 $defaults['forced'] = false;
122 $temp->add(new admin_setting_gradecat_combo('grade_droplow', new lang_string('droplow', 'grades'),
123 new lang_string('droplow_help', 'grades'), $defaults, $options));
125 $ADMIN->add('grades', $temp);
128 /// Grade item settings
129 $temp = new admin_settingpage('gradeitemsettings', new lang_string('gradeitemsettings', 'grades'), 'moodle/grade:manage');
130 if ($ADMIN->fulltree) {
131 $temp->add(new admin_setting_configselect('grade_displaytype', new lang_string('gradedisplaytype', 'grades'),
132 new lang_string('gradedisplaytype_help', 'grades'), GRADE_DISPLAY_TYPE_REAL, $display_types));
134 $temp->add(new admin_setting_configselect('grade_decimalpoints', new lang_string('decimalpoints', 'grades'),
135 new lang_string('decimalpoints_help', 'grades'), 2,
136 array( '0' => '0',
137 '1' => '1',
138 '2' => '2',
139 '3' => '3',
140 '4' => '4',
141 '5' => '5')));
143 $temp->add(new admin_setting_configmultiselect('grade_item_advanced', new lang_string('gradeitemadvanced', 'grades'), new lang_string('gradeitemadvanced_help', 'grades'),
144 array('iteminfo', 'idnumber', 'gradepass', 'plusfactor', 'multfactor', 'display', 'decimals', 'hiddenuntil', 'locktime'),
145 array('iteminfo' => new lang_string('iteminfo', 'grades'),
146 'idnumber' => new lang_string('idnumbermod'),
147 'gradetype' => new lang_string('gradetype', 'grades'),
148 'scaleid' => new lang_string('scale'),
149 'grademin' => new lang_string('grademin', 'grades'),
150 'grademax' => new lang_string('grademax', 'grades'),
151 'gradepass' => new lang_string('gradepass', 'grades'),
152 'plusfactor' => new lang_string('plusfactor', 'grades'),
153 'multfactor' => new lang_string('multfactor', 'grades'),
154 'display' => new lang_string('gradedisplaytype', 'grades'),
155 'decimals' => new lang_string('decimalpoints', 'grades'),
156 'hidden' => new lang_string('hidden', 'grades'),
157 'hiddenuntil' => new lang_string('hiddenuntil', 'grades'),
158 'locked' => new lang_string('locked', 'grades'),
159 'locktime' => new lang_string('locktime', 'grades'),
160 'aggregationcoef' => new lang_string('aggregationcoef', 'grades'),
161 'parentcategory' => new lang_string('parentcategory', 'grades'))));
163 $ADMIN->add('grades', $temp);
166 /// Scales and outcomes
168 $scales = new admin_externalpage('scales', new lang_string('scales'), $CFG->wwwroot.'/grade/edit/scale/index.php', 'moodle/grade:manage');
169 $ADMIN->add('grades', $scales);
170 if (!empty($CFG->enableoutcomes)) {
171 $outcomes = new admin_externalpage('outcomes', new lang_string('outcomes', 'grades'), $CFG->wwwroot.'/grade/edit/outcome/index.php', 'moodle/grade:manage');
172 $ADMIN->add('grades', $outcomes);
174 $letters = new admin_externalpage('letters', new lang_string('letters', 'grades'), $CFG->wwwroot.'/grade/edit/letter/index.php', 'moodle/grade:manageletters');
175 $ADMIN->add('grades', $letters);
177 // The plugins must implement a settings.php file that adds their admin settings to the $settings object
179 // Reports
180 $ADMIN->add('grades', new admin_category('gradereports', new lang_string('reportsettings', 'grades')));
181 foreach (get_plugin_list('gradereport') as $plugin => $plugindir) {
182 // Include all the settings commands for this plugin if there are any
183 if (file_exists($plugindir.'/settings.php')) {
184 $settings = new admin_settingpage('gradereport'.$plugin, new lang_string('pluginname', 'gradereport_'.$plugin), 'moodle/grade:manage');
185 include($plugindir.'/settings.php');
186 if ($settings) {
187 $ADMIN->add('gradereports', $settings);
192 // Imports
193 $ADMIN->add('grades', new admin_category('gradeimports', new lang_string('importsettings', 'grades')));
194 foreach (get_plugin_list('gradeimport') as $plugin => $plugindir) {
196 // Include all the settings commands for this plugin if there are any
197 if (file_exists($plugindir.'/settings.php')) {
198 $settings = new admin_settingpage('gradeimport'.$plugin, new lang_string('pluginname', 'gradeimport_'.$plugin), 'moodle/grade:manage');
199 include($plugindir.'/settings.php');
200 if ($settings) {
201 $ADMIN->add('gradeimports', $settings);
207 // Exports
208 $ADMIN->add('grades', new admin_category('gradeexports', new lang_string('exportsettings', 'grades')));
209 foreach (get_plugin_list('gradeexport') as $plugin => $plugindir) {
210 // Include all the settings commands for this plugin if there are any
211 if (file_exists($plugindir.'/settings.php')) {
212 $settings = new admin_settingpage('gradeexport'.$plugin, new lang_string('pluginname', 'gradeexport_'.$plugin), 'moodle/grade:manage');
213 include($plugindir.'/settings.php');
214 if ($settings) {
215 $ADMIN->add('gradeexports', $settings);
220 } // end of speedup