49 lines
1.7 KiB
PHP
49 lines
1.7 KiB
PHP
<?php
|
|
|
|
// 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/>.
|
|
|
|
require_once '../../../config.php';
|
|
require_once $CFG->dirroot.'/grade/export/lib.php';
|
|
require_once 'grade_export_xml.php';
|
|
|
|
$id = required_param('id', PARAM_INT); // course id
|
|
|
|
if (!$course = $DB->get_record('course', array('id'=>$id))) {
|
|
print_error('nocourseid');
|
|
}
|
|
|
|
require_login($course);
|
|
$context = context_course::instance($id);
|
|
$groupid = groups_get_course_group($course, true);
|
|
|
|
require_capability('moodle/grade:export', $context);
|
|
require_capability('gradeexport/xml:view', $context);
|
|
|
|
if (groups_get_course_groupmode($COURSE) == SEPARATEGROUPS and !has_capability('moodle/site:accessallgroups', $context)) {
|
|
if (!groups_is_member($groupid, $USER->id)) {
|
|
print_error('cannotaccessgroup', 'grades');
|
|
}
|
|
}
|
|
$mform = new grade_export_form(null, array('publishing' => true, 'simpleui' => true, 'multipledisplaytypes' => false,
|
|
'idnumberrequired' => true));
|
|
$formdata = $mform->get_data();
|
|
|
|
// print all the exported data here
|
|
$export = new grade_export_xml($course, $groupid, $formdata);
|
|
$export->print_grades();
|
|
|
|
|