2007-09-26 09:42:28 +00:00
|
|
|
<?php //$Id$
|
|
|
|
|
2007-10-10 06:34:20 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// //
|
|
|
|
// NOTICE OF COPYRIGHT //
|
|
|
|
// //
|
|
|
|
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
|
|
|
// http://moodle.com //
|
|
|
|
// //
|
|
|
|
// Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com //
|
|
|
|
// //
|
|
|
|
// This program 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 2 of the License, or //
|
|
|
|
// (at your option) any later version. //
|
|
|
|
// //
|
|
|
|
// This program 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: //
|
|
|
|
// //
|
|
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
|
|
// //
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-09-26 09:42:28 +00:00
|
|
|
$nomoodlecookie = true; // session not used here
|
|
|
|
require '../../../config.php';
|
|
|
|
|
|
|
|
$id = required_param('id', PARAM_INT); // course id
|
2007-09-27 06:51:54 +00:00
|
|
|
if (!$course = get_record('course', 'id', $id)) {
|
|
|
|
print_error('nocourseid');
|
|
|
|
}
|
2007-09-26 09:42:28 +00:00
|
|
|
|
|
|
|
require_user_key_login('grade/import', $id); // we want different keys for each course
|
|
|
|
|
|
|
|
if (empty($CFG->gradepublishing)) {
|
2008-05-14 08:05:45 +00:00
|
|
|
print_error('gradepubdisable');
|
2007-09-26 09:42:28 +00:00
|
|
|
}
|
|
|
|
|
2007-09-27 06:51:54 +00:00
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $id);
|
2007-09-27 06:56:51 +00:00
|
|
|
require_capability('gradeimport/xml:publish', $context);
|
2007-09-27 06:51:54 +00:00
|
|
|
|
2007-09-26 09:42:28 +00:00
|
|
|
// use the same page parameters as import.php and append &key=sdhakjsahdksahdkjsahksadjksahdkjsadhksa
|
|
|
|
require 'import.php';
|
|
|
|
|
2007-10-10 06:34:20 +00:00
|
|
|
?>
|