MDL-13259 Redirecting to creation of new scale when none exists. Merging from MOODLE_19_STABLE

This commit is contained in:
nicolasconnault 2008-10-17 14:33:05 +00:00
parent 976bf10efa
commit 1f93ed2a2d
2 changed files with 7 additions and 0 deletions

View File

@ -133,6 +133,12 @@ if ($courseid) {
admin_externalpage_print_header();
}
if (!grade_scale::fetch_all_local($courseid) && !grade_scale::fetch_all_global()) {
notice_yesno(get_string('noscales', 'grades'), $CFG->wwwroot.'/grade/edit/scale/edit.php?courseid='.$courseid, $returnurl);
print_footer($course);
die();
}
$mform->display();
if ($courseid) {

View File

@ -349,6 +349,7 @@ $string['nonweightedpct'] = 'non-weighted %%';
$string['nooutcome'] = 'No outcome';
$string['nooutcomes'] = 'Outcome items must be linked to a course outcome, but there are no outcomes for this course. Would you like to add one?';
$string['nopublish'] = 'Do not publish';
$string['noscales'] = 'Outcomes must be linked to a course scale or global scale, but there are none. Would you like to add one?';
$string['noselectedcategories'] = 'no categories were selected.';
$string['noselecteditems'] = 'no items were selected.';
$string['notteachererror'] = 'You must be a teacher to use this feature.';