2009-07-07 02:26:36 +00:00
|
|
|
<?php
|
2007-07-29 23:02:03 +00:00
|
|
|
|
2009-07-07 02:26:36 +00:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
2007-10-10 06:34:20 +00:00
|
|
|
|
2007-07-29 23:02:03 +00:00
|
|
|
require_once '../../../config.php';
|
|
|
|
require_once $CFG->dirroot.'/grade/lib.php';
|
|
|
|
require_once $CFG->dirroot.'/grade/report/lib.php';
|
|
|
|
require_once 'edit_form.php';
|
|
|
|
|
2007-07-30 22:56:45 +00:00
|
|
|
$courseid = optional_param('courseid', 0, PARAM_INT);
|
2007-07-29 23:02:03 +00:00
|
|
|
$id = optional_param('id', 0, PARAM_INT);
|
|
|
|
|
|
|
|
$systemcontext = get_context_instance(CONTEXT_SYSTEM);
|
2009-02-09 10:49:41 +00:00
|
|
|
$heading = '';
|
2007-07-29 23:02:03 +00:00
|
|
|
|
2007-07-30 22:56:45 +00:00
|
|
|
// a bit complex access control :-O
|
|
|
|
if ($id) {
|
2009-02-09 10:49:41 +00:00
|
|
|
$heading = get_string('editscale', 'grades');
|
|
|
|
|
2007-07-30 22:56:45 +00:00
|
|
|
/// editing existing scale
|
2008-06-02 16:06:33 +00:00
|
|
|
if (!$scale_rec = $DB->get_record('scale', array('id' => $id))) {
|
2008-05-14 07:04:09 +00:00
|
|
|
print_error('invalidscaleid');
|
2007-07-30 22:56:45 +00:00
|
|
|
}
|
|
|
|
if ($scale_rec->courseid) {
|
|
|
|
$scale_rec->standard = 0;
|
2008-06-02 16:06:33 +00:00
|
|
|
if (!$course = $DB->get_record('course', array('id' => $scale_rec->courseid))) {
|
2008-05-14 07:04:09 +00:00
|
|
|
print_error('invalidcourseid');
|
2007-07-30 22:56:45 +00:00
|
|
|
}
|
|
|
|
require_login($course);
|
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
require_capability('moodle/course:managescales', $context);
|
|
|
|
$courseid = $course->id;
|
|
|
|
} else {
|
|
|
|
if ($courseid) {
|
2008-06-02 16:06:33 +00:00
|
|
|
if (!$course = $DB->get_record('course', array('id' => $courseid))) {
|
2008-05-14 07:04:09 +00:00
|
|
|
print_error('invalidcourseid');
|
2007-07-30 22:56:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$scale_rec->standard = 1;
|
|
|
|
$scale_rec->courseid = $courseid;
|
2007-09-15 21:17:11 +00:00
|
|
|
require_login($courseid);
|
2007-07-29 23:02:03 +00:00
|
|
|
require_capability('moodle/course:managescales', $systemcontext);
|
|
|
|
}
|
2007-07-30 22:56:45 +00:00
|
|
|
|
|
|
|
} else if ($courseid){
|
2009-02-09 10:49:41 +00:00
|
|
|
$heading = get_string('addscale', 'grades');
|
2007-07-30 22:56:45 +00:00
|
|
|
/// adding new scale from course
|
2008-06-02 16:06:33 +00:00
|
|
|
if (!$course = $DB->get_record('course', array('id' => $courseid))) {
|
2007-07-30 22:56:45 +00:00
|
|
|
print_error('nocourseid');
|
|
|
|
}
|
|
|
|
$scale_rec = new object();
|
|
|
|
$scale_rec->standard = 0;
|
|
|
|
$scale_rec->courseid = $courseid;
|
|
|
|
require_login($course);
|
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
require_capability('moodle/course:managescales', $context);
|
2007-07-29 23:02:03 +00:00
|
|
|
|
|
|
|
} else {
|
2007-07-30 22:56:45 +00:00
|
|
|
/// adding new scale from admin section
|
|
|
|
$scale_rec = new object();
|
|
|
|
$scale_rec->standard = 1;
|
|
|
|
$scale_rec->courseid = 0;
|
|
|
|
require_login();
|
|
|
|
require_capability('moodle/course:managescales', $systemcontext);
|
2007-07-29 23:02:03 +00:00
|
|
|
}
|
|
|
|
|
2009-07-27 10:05:46 +00:00
|
|
|
if (!$courseid) {
|
|
|
|
require_once $CFG->libdir.'/adminlib.php';
|
|
|
|
admin_externalpage_setup('scales');
|
|
|
|
}
|
|
|
|
|
2007-07-30 22:56:45 +00:00
|
|
|
// default return url
|
|
|
|
$gpr = new grade_plugin_return();
|
|
|
|
$returnurl = $gpr->get_return_url('index.php?id='.$courseid);
|
|
|
|
|
|
|
|
$mform = new edit_scale_form(null, array('gpr'=>$gpr));
|
|
|
|
|
|
|
|
$mform->set_data($scale_rec);
|
|
|
|
|
2007-07-29 23:02:03 +00:00
|
|
|
if ($mform->is_cancelled()) {
|
|
|
|
redirect($returnurl);
|
|
|
|
|
2008-06-09 16:53:30 +00:00
|
|
|
} else if ($data = $mform->get_data()) {
|
2007-07-29 23:02:03 +00:00
|
|
|
$scale = new grade_scale(array('id'=>$id));
|
|
|
|
$data->userid = $USER->id;
|
|
|
|
grade_scale::set_properties($scale, $data);
|
|
|
|
|
|
|
|
if (empty($scale->id)) {
|
2007-07-30 22:56:45 +00:00
|
|
|
if (!has_capability('moodle/grade:manage', $systemcontext)) {
|
|
|
|
$data->standard = 0;
|
2007-07-29 23:02:03 +00:00
|
|
|
}
|
2007-07-30 22:56:45 +00:00
|
|
|
$scale->courseid = !empty($data->standard) ? 0 : $courseid;
|
2007-07-29 23:02:03 +00:00
|
|
|
$scale->insert();
|
|
|
|
|
|
|
|
} else {
|
2007-07-30 22:56:45 +00:00
|
|
|
if (isset($data->standard)) {
|
|
|
|
$scale->courseid = !empty($data->standard) ? 0 : $courseid;
|
2007-07-29 23:02:03 +00:00
|
|
|
} else {
|
2009-01-07 19:52:24 +00:00
|
|
|
unset($scale->courseid); // keep previous
|
2007-07-29 23:02:03 +00:00
|
|
|
}
|
|
|
|
$scale->update();
|
|
|
|
}
|
2007-07-31 12:03:45 +00:00
|
|
|
redirect($returnurl);
|
2007-07-29 23:02:03 +00:00
|
|
|
}
|
|
|
|
|
2007-07-30 22:56:45 +00:00
|
|
|
if ($courseid) {
|
2009-02-09 10:49:41 +00:00
|
|
|
print_grade_page_head($course->id, 'scale', 'edit', $heading);
|
2007-07-30 22:56:45 +00:00
|
|
|
} else {
|
|
|
|
admin_externalpage_print_header();
|
|
|
|
}
|
2007-07-29 23:02:03 +00:00
|
|
|
|
|
|
|
$mform->display();
|
|
|
|
|
2009-08-06 14:21:57 +00:00
|
|
|
echo $OUTPUT->footer();
|