2006-04-07 16:00:29 +00:00
|
|
|
<?php // $Id$
|
|
|
|
/**
|
2008-09-04 09:22:37 +00:00
|
|
|
* This page allows the teacher to enter a manual grade for a particular question.
|
|
|
|
* This page is expected to only be used in a popup window.
|
|
|
|
* *
|
2007-11-07 12:35:33 +00:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
|
|
* @package quiz
|
|
|
|
*/
|
2006-04-07 16:00:29 +00:00
|
|
|
|
|
|
|
require_once('../../config.php');
|
|
|
|
require_once('locallib.php');
|
|
|
|
|
2008-12-10 09:11:30 +00:00
|
|
|
$attemptid = required_param('attempt', PARAM_INT); // attempt id
|
|
|
|
$questionid = required_param('question', PARAM_INT); // question id
|
2006-04-07 16:00:29 +00:00
|
|
|
|
2008-09-04 09:22:37 +00:00
|
|
|
$attemptobj = new quiz_attempt($attemptid);
|
2006-04-07 16:00:29 +00:00
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// Can only grade finished attempts.
|
|
|
|
if (!$attemptobj->is_finished()) {
|
2008-06-10 06:27:38 +00:00
|
|
|
print_error('attemptclosed', 'quiz');
|
2006-04-07 16:00:29 +00:00
|
|
|
}
|
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// Check login and permissions.
|
|
|
|
require_login($attemptobj->get_courseid(), false, $attemptobj->get_cm());
|
|
|
|
$attemptobj->require_capability('mod/quiz:grade');
|
2007-08-17 12:49:28 +00:00
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// Load the questions and states.
|
|
|
|
$questionids = array($questionid);
|
|
|
|
$attemptobj->load_questions($questionids);
|
|
|
|
$attemptobj->load_question_states($questionids);
|
2008-03-07 12:35:10 +00:00
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// Log this action.
|
|
|
|
add_to_log($attemptobj->get_courseid(), 'quiz', 'manualgrade', 'comment.php?attempt=' .
|
|
|
|
$attemptobj->get_attemptid() . '&question=' . $questionid,
|
|
|
|
$attemptobj->get_quizid(), $attemptobj->get_cmid());
|
2006-04-07 16:00:29 +00:00
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// Print the page header
|
2006-04-07 16:00:29 +00:00
|
|
|
print_header();
|
2008-09-18 07:39:10 +00:00
|
|
|
print_heading(format_string($attemptobj->get_question($questionid)->name));
|
2006-04-07 16:00:29 +00:00
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// Process any data that was submitted.
|
2006-04-07 16:00:29 +00:00
|
|
|
if ($data = data_submitted() and confirm_sesskey()) {
|
2008-09-18 07:39:10 +00:00
|
|
|
$error = $attemptobj->process_comment($questionid,
|
|
|
|
$data->response['comment'], $data->response['grade']);
|
2008-05-15 16:02:12 +00:00
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// If success, notify and print a close button.
|
|
|
|
if (!is_string($error)) {
|
|
|
|
notify(get_string('changessaved'), 'notifysuccess');
|
2008-12-10 09:11:30 +00:00
|
|
|
close_window(2, true);
|
2006-04-07 16:00:29 +00:00
|
|
|
}
|
2008-09-18 07:39:10 +00:00
|
|
|
|
|
|
|
/// Otherwise, display the error and fall throug to re-display the form.
|
|
|
|
notify($error);
|
2006-04-07 16:00:29 +00:00
|
|
|
}
|
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// Print the comment form.
|
2008-12-10 09:11:30 +00:00
|
|
|
echo '<form method="post" class="mform" id="manualgradingform" action="' . $CFG->wwwroot . '/mod/quiz/comment.php">';
|
2008-09-18 07:39:10 +00:00
|
|
|
$attemptobj->question_print_comment_fields($questionid, 'response');
|
2008-12-10 09:11:30 +00:00
|
|
|
?>
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="attempt" value="<?php echo $attemptobj->get_uniqueid(); ?>" />
|
|
|
|
<input type="hidden" name="question" value="<?php echo $questionid; ?>" />
|
|
|
|
<input type="hidden" name="sesskey" value="<?php echo sesskey(); ?>" />
|
|
|
|
</div>
|
|
|
|
<fieldset class="hidden">
|
|
|
|
<div>
|
|
|
|
<div class="fitem">
|
|
|
|
<div class="fitemtitle">
|
|
|
|
<div class="fgrouplabel"><label> </label></div>
|
|
|
|
</div>
|
|
|
|
<fieldset class="felement fgroup">
|
|
|
|
<input id="id_submitbutton" type="submit" name="submit" value="<?php print_string('save', 'quiz'); ?>"/>
|
|
|
|
<input id="id_cancel" type="button" value="<?php print_string('cancel'); ?>" onclick="close_window"/>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<?php
|
2008-09-18 07:39:10 +00:00
|
|
|
echo '</form>';
|
2006-04-07 16:00:29 +00:00
|
|
|
|
2008-09-18 07:39:10 +00:00
|
|
|
/// End of the page.
|
2008-12-10 09:11:30 +00:00
|
|
|
print_footer('empty');
|
2006-04-07 16:00:29 +00:00
|
|
|
?>
|