MDL-21695 Removing obsolete strings and renaming legacy config* strings in gradebook

AMOS BEGIN
 MOV [configdisablegradehistory,core_grades],[disablegradehistory_help,core_grades]
 MOV [configenableoutcomes,core_grades],[enableoutcomes_help,core_grades]
 MOV [configfixedstudents,core_grades],[fixedstudents_help,core_grades]
 MOV [configgradehistorylifetime,core_grades],[gradehistorylifetime_help,core_grades]
 MOV [configgradeitemadvanced,core_grades],[gradeitemadvanced_help,core_grades]
 MOV [configgradepublishing,core_grades],[gradepublishing_help,core_grades]
 MOV [confighiddenasdate,core_grades],[hiddenasdate_help,core_grades]
 MOV [confighideforcedsettings,core_grades],[hideforcedsettings_help],[core_grades]
 MOV [configincludescalesinaggregation,core_grades],[includescalesinaggregation_help,core_grades]
 MOV [configprofilereport,core_grades],[profilereport_help,core_grades]
 MOV [configshowuserimage,core_grades],[showuserimage_help,core_grades]
 MOV [configunlimitedgrades,core_grades],[unlimitedgrades_help,core_grades]
AMOS END
This commit is contained in:
David Mudrak
2010-06-25 17:21:15 +00:00
parent bf03b43f8c
commit 5cf5cc9b41
6 changed files with 25 additions and 28 deletions
+2 -2
View File
@@ -4280,7 +4280,7 @@ class admin_setting_special_gradelimiting extends admin_setting_configcheckbox {
*/
function admin_setting_special_gradelimiting() {
parent::__construct('unlimitedgrades', get_string('unlimitedgrades', 'grades'),
get_string('configunlimitedgrades', 'grades'), '0', '1', '0');
get_string('unlimitedgrades_help', 'grades'), '0', '1', '0');
}
/**
@@ -4492,7 +4492,7 @@ class admin_setting_grade_profilereport extends admin_setting_configselect {
* Calls parent::__construct with specific arguments
*/
public function __construct() {
parent::__construct('grade_profilereport', get_string('profilereport', 'grades'), get_string('configprofilereport', 'grades'), 'user', null);
parent::__construct('grade_profilereport', get_string('profilereport', 'grades'), get_string('profilereport_help', 'grades'), 'user', null);
}
/**