mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
58 lines
2.0 KiB
PHP
58 lines
2.0 KiB
PHP
<?php
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
require_once($CFG->libdir.'/plagiarismlib.php');
|
|
|
|
$id = optional_param('id', 0, PARAM_INT); // Course module ID
|
|
$a = optional_param('a', 0, PARAM_INT); // Assignment ID
|
|
$mode = optional_param('mode', 'all', PARAM_ALPHA); // What mode are we in?
|
|
$download = optional_param('download' , 'none', PARAM_ALPHA); //ZIP download asked for?
|
|
|
|
$url = new moodle_url('/mod/assignment/submissions.php');
|
|
if ($id) {
|
|
if (! $cm = get_coursemodule_from_id('assignment', $id)) {
|
|
print_error('invalidcoursemodule');
|
|
}
|
|
|
|
if (! $assignment = $DB->get_record("assignment", array("id"=>$cm->instance))) {
|
|
print_error('invalidid', 'assignment');
|
|
}
|
|
|
|
if (! $course = $DB->get_record("course", array("id"=>$assignment->course))) {
|
|
print_error('coursemisconf', 'assignment');
|
|
}
|
|
$url->param('id', $id);
|
|
} else {
|
|
if (!$assignment = $DB->get_record("assignment", array("id"=>$a))) {
|
|
print_error('invalidcoursemodule');
|
|
}
|
|
if (! $course = $DB->get_record("course", array("id"=>$assignment->course))) {
|
|
print_error('coursemisconf', 'assignment');
|
|
}
|
|
if (! $cm = get_coursemodule_from_instance("assignment", $assignment->id, $course->id)) {
|
|
print_error('invalidcoursemodule');
|
|
}
|
|
$url->param('a', $a);
|
|
}
|
|
|
|
if ($mode !== 'all') {
|
|
$url->param('mode', $mode);
|
|
}
|
|
$PAGE->set_url($url);
|
|
require_login($course, false, $cm);
|
|
|
|
require_capability('mod/assignment:grade', context_module::instance($cm->id));
|
|
|
|
$PAGE->requires->js('/mod/assignment/assignment.js');
|
|
|
|
/// Load up the required assignment code
|
|
require($CFG->dirroot.'/mod/assignment/type/'.$assignment->assignmenttype.'/assignment.class.php');
|
|
$assignmentclass = 'assignment_'.$assignment->assignmenttype;
|
|
$assignmentinstance = new $assignmentclass($cm->id, $assignment, $cm, $course);
|
|
|
|
if($download == "zip") {
|
|
$assignmentinstance->download_submissions();
|
|
} else {
|
|
$assignmentinstance->submissions($mode); // Display or process the submissions
|
|
} |