Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * Rubric editor page
19
 *
20
 * @package    gradingform_guide
21
 * @copyright  2012 Dan Marsden <dan@danmarsden.com>
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
require_once(__DIR__.'/../../../../config.php');
26
require_once(__DIR__.'/lib.php');
27
require_once(__DIR__.'/edit_form.php');
28
require_once($CFG->dirroot.'/grade/grading/lib.php');
29
 
30
$areaid = required_param('areaid', PARAM_INT);
31
 
32
$manager = get_grading_manager($areaid);
33
 
34
list($context, $course, $cm) = get_context_info_array($manager->get_context()->id);
35
 
36
require_login($course, true, $cm);
37
require_capability('moodle/grade:managegradingforms', $context);
38
 
39
$controller = $manager->get_controller('guide');
40
 
41
$PAGE->set_url(new moodle_url('/grade/grading/form/guide/edit.php', array('areaid' => $areaid)));
42
$PAGE->set_title(get_string('definemarkingguide', 'gradingform_guide'));
43
$PAGE->set_heading(get_string('definemarkingguide', 'gradingform_guide'));
44
 
45
$mform = new gradingform_guide_editguide(null, array('areaid' => $areaid, 'context' => $context,
46
    'allowdraft' => !$controller->has_active_instances()), 'post', '', array('class' => 'gradingform_guide_editform'));
47
$data = $controller->get_definition_for_editing(true);
48
 
49
$returnurl = optional_param('returnurl', $manager->get_management_url(), PARAM_LOCALURL);
50
$data->returnurl = $returnurl;
51
$mform->set_data($data);
52
if ($mform->is_cancelled()) {
53
    redirect($returnurl);
54
} else if ($mform->is_submitted() && $mform->is_validated() && !$mform->need_confirm_regrading($controller)) {
55
    // Everything ok, validated, re-grading confirmed if needed. Make changes to the rubric.
56
    $controller->update_definition($mform->get_data());
57
    redirect($returnurl);
58
}
59
 
60
// Try to keep the session alive on this page as it may take some time
61
// before significant interaction happens with the server.
62
\core\session\manager::keepalive();
63
 
64
echo $OUTPUT->header();
65
$mform->display();
66
echo $OUTPUT->footer();