MDL-21695 Replaced grade/gradedisplaytype.html
AMOS BEGIN HLP grade/gradedisplaytype.html,[gradedisplaytype_help,core_grades] AMOS END
This commit is contained in:
@@ -124,7 +124,7 @@ if (has_capability('moodle/grade:manage', $systemcontext)
|
||||
$temp = new admin_settingpage('gradeitemsettings', get_string('gradeitemsettings', 'grades'), 'moodle/grade:manage');
|
||||
if ($ADMIN->fulltree) {
|
||||
$temp->add(new admin_setting_configselect('grade_displaytype', get_string('gradedisplaytype', 'grades'),
|
||||
get_string('configgradedisplaytype', 'grades'), GRADE_DISPLAY_TYPE_REAL, $display_types));
|
||||
get_string('gradedisplaytype_help', 'grades'), GRADE_DISPLAY_TYPE_REAL, $display_types));
|
||||
|
||||
$temp->add(new admin_setting_configselect('grade_decimalpoints', get_string('decimalpoints', 'grades'),
|
||||
get_string('decimalpoints_help', 'grades'), 2,
|
||||
|
||||
@@ -85,7 +85,7 @@ class course_settings_form extends moodleform {
|
||||
}
|
||||
}
|
||||
$mform->addElement('select', 'displaytype', get_string('gradedisplaytype', 'grades'), $options);
|
||||
$mform->setHelpButton('displaytype', array('gradedisplaytype', get_string('gradedisplaytype', 'grades'), 'grade'));
|
||||
$mform->addHelpButton('displaytype', 'gradedisplaytype', 'grades');
|
||||
|
||||
|
||||
$options = array(-1=> get_string('defaultprev', 'grades', $CFG->grade_decimalpoints), 0=>0, 1=>1, 2=>2, 3=>3, 4=>4, 5=>5);
|
||||
|
||||
@@ -184,7 +184,7 @@ class edit_category_form extends moodleform {
|
||||
}
|
||||
}
|
||||
$mform->addElement('select', 'grade_item_display', get_string('gradedisplaytype', 'grades'), $options);
|
||||
$mform->setHelpButton('grade_item_display', array('gradedisplaytype', get_string('gradedisplaytype', 'grades'), 'grade'), true);
|
||||
$mform->addHelpButton('grade_item_display', 'gradedisplaytype', 'grades');
|
||||
|
||||
$default_gradedecimals = grade_get_setting($COURSE->id, 'decimalpoints', $CFG->grade_decimalpoints);
|
||||
$options = array(-1=>get_string('defaultprev', 'grades', $default_gradedecimals), 0=>0, 1=>1, 2=>2, 3=>3, 4=>4, 5=>5);
|
||||
|
||||
@@ -123,7 +123,7 @@ class edit_item_form extends moodleform {
|
||||
}
|
||||
}
|
||||
$mform->addElement('select', 'display', get_string('gradedisplaytype', 'grades'), $options);
|
||||
$mform->setHelpButton('display', array('gradedisplaytype', get_string('gradedisplaytype', 'grades'), 'grade'), true);
|
||||
$mform->addHelpButton('display', 'gradedisplaytype', 'grades');
|
||||
|
||||
$default_gradedecimals = grade_get_setting($COURSE->id, 'decimalpoints', $CFG->grade_decimalpoints);
|
||||
$options = array(-1=>get_string('defaultprev', 'grades', $default_gradedecimals), 0=>0, 1=>1, 2=>2, 3=>3, 4=>4, 5=>5);
|
||||
|
||||
@@ -120,7 +120,6 @@ $string['configcoursegradedisplaytype'] = 'Select the default display type of gr
|
||||
$string['configdisablegradehistory'] = 'Disable history tracking of changes in grades related tables. This may speed up the server a little and conserve space in database.';
|
||||
$string['configenableoutcomes'] = 'Support for Outcomes (also known as Competencies, Goals, Standards or Criteria) means that we can grade things using one or more scales that are tied to outcome statements. Enabling outcomes makes such special grading possible throughout the site.';
|
||||
$string['configfixedstudents'] = 'Allows grades to scroll horizontally without losing sight of the students column, by making it static.';
|
||||
$string['configgradedisplaytype'] = 'Specifies how to display grades in the grader and user reports. Grades may be shown as actual grades, as percentages (in reference to the minimum and maximum grades) or as letters.';
|
||||
$string['configgradeexportdisplaytype'] = 'Grades can be shown as real grades, as percentages (in reference to the minimum and maximum grades) or as letters (A, B, C etc..) during export. This can be overridden during export.';
|
||||
$string['configgradehistorylifetime'] = 'This specifies the length of time you want to keep history of changes in grade related tables. It is recommended to keep it as long as possible. If you experience performance problems or have limited database space, try to set lower value.';
|
||||
$string['configgradeitemadvanced'] = 'Select all elements that should be displayed as advanced when editing grade items.';
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
<h1>Grade display type</h1>
|
||||
<p>Specifies how to display grades in the grader and user reports. Grades may be shown as actual grades, as percentages (in reference to the minimum and maximum grades) or as letters.</p>
|
||||
Reference in New Issue
Block a user