course)) { error("Course is misconfigured"); } if (! $exercise = get_record("exercise", "id", $cm->instance)) { error("Course module is incorrect"); } require_login($course->id); $navigation = ""; if ($course->category) { $navigation = "id\">$course->shortname ->"; } $strexercises = get_string("modulenameplural", "exercise"); $strexercise = get_string("modulename", "exercise"); $strassessments = get_string("assessments", "exercise"); // ... print the header and... print_header("$course->shortname: $exercise->name", "$course->fullname", "$navigation id>$strexercises -> id\">$exercise->name -> $strassessments", "", "", true); //...get the action require_variable($action); /******************* admin confirm delete ************************************/ if ($action == 'adminconfirmdelete' ) { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } if (empty($_GET['aid'])) { error("Admin confirm delete: assessment id missing"); } notice_yesno(get_string("confirmdeletionofthisitem","exercise", get_string("assessment", "exercise")), "assessments.php?action=admindelete&id=$cm->id&aid=$_GET[aid]", "submissions.php?action=adminlist&id=$cm->id"); } /******************* admin delete ************************************/ elseif ($action == 'admindelete' ) { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } if (empty($_GET['aid'])) { error("Admin delete: submission id missing"); } print_string("deleting", "exercise"); // first delete all the associated records... delete_records("exercise_grades", "assessmentid", $_GET['aid']); // ...now delete the assessment... delete_records("exercise_assessments", "id", $_GET['aid']); print_continue("submissions.php?id=$cm->id&action=adminlist"); } /******************* admin amend Grading Grade ************************************/ if ($action == 'adminamendgradinggrade' ) { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } if (empty($_GET['aid'])) { error("Admin Amend Grading grade: assessment id missing"); } if (!$assessment = get_record("exercise_assessments", "id", $_GET['aid'])) { error("Amin Amend Grading grade: assessment not found"); } print_heading(get_string("amend", "exercise")." ".get_string("gradeforstudentsassessment", "exercise", $course->student)); echo "
\n"; } /*********************** admin list of asssessments (of a submission) (by teachers)**************/ elseif ($action == 'adminlist') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } if (empty($_GET['sid'])) { error ("exercise asssessments: adminlist called with no sid"); } $submission = get_record("exercise_submissions", "id", $_GET['sid']); exercise_print_assessments_for_admin($exercise, $submission); print_continue("submissions.php?action=adminlist&id=$cm->id"); } /****************** admin list of asssessments by a student (used by teachers only )******************/ elseif ($action == 'adminlistbystudent') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } if (empty($_GET['userid'])) { error ("exercise asssessments: adminlistbystudent called with no userid"); } $user = get_record("user", "id", $_GET['userid']); exercise_print_assessments_by_user_for_admin($exercise, $user); print_continue("submissions.php?action=adminlist&id=$cm->id"); } /****************** Assess resubmission (by teacher) ***************************/ elseif ($action == 'assessresubmission') { require_variable($sid); if (! $submission = get_record("exercise_submissions", "id", $sid)) { error("Assess submission is misconfigured - no submission record!"); } if (!$submissionowner = get_record("user", "id", $submission->userid)) { error("Assess resubmission: user record not found"); } // there can be an assessment record, if there isn't... if (!$assessment = exercise_get_submission_assessment($submission, $USER)) { if (!$submissions = exercise_get_user_submissions($exercise, $submissionowner)) { error("Assess resubmission: submission records not found"); } $lastone= ''; // just the last but one submission foreach ($submissions as $submission) { $prevsubmission = $lastone; $lastone = $submission; } // get the teacher's assessment of the student's previous submission if (!$prevassessment = exercise_get_submission_assessment($prevsubmission, $USER)) { error("Assess resubmission: Previous assessment record not found"); } // copy this assessment with comments... $assessment = exercise_copy_assessment($prevassessment, $submission, true); } print_heading(get_string("thisisaresubmission", "exercise", "$submissionowner->firstname $submissionowner->lastname")); // show assessment and allow changes exercise_print_assessment_form($exercise, $assessment, true, $_SERVER["HTTP_REFERER"]); } /****************** Assess submission (by teacher or student) ***************************/ elseif ($action == 'assesssubmission') { require_variable($sid); if (! $submission = get_record("exercise_submissions", "id", $sid)) { error("Assess submission is misconfigured - no submission record!"); } // there can be an assessment record (for teacher submissions), if there isn't... if (!$assessment = exercise_get_submission_assessment($submission, $USER)) { $yearfromnow = time() + 365 * 86400; // ...create one and set timecreated way in the future, this is reset when record is updated $assessment->exerciseid = $exercise->id; $assessment->submissionid = $submission->id; $assessment->userid = $USER->id; $assessment->grade = -1; // set impossible grade $assessment->timecreated = $yearfromnow; $assessment->timegraded = 0; if (!$assessment->id = insert_record("exercise_assessments", $assessment)) { error("Could not insert exercise assessment!"); } } // show assessment and allow changes exercise_print_assessment_form($exercise, $assessment, true, $_SERVER["HTTP_REFERER"]); } /****************** display grading form (viewed by student) *********************************/ elseif ($action == 'displaygradingform') { print_heading_with_help(get_string("specimenassessmentform", "exercise"), "specimen", "exercise"); exercise_print_assessment_form($exercise); // called with no assessment print_continue("view.php?id=$cm->id"); } /****************** edit assessment elements (for teachers) ***********************/ elseif ($action == 'editelements') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } $count = count_records("exercise_grades", "exercise", $exercise->id); if ($exercise->phase > 1 and $count) { notify(get_string("warningonamendingelements", "exercise")); } // set up heading, form and table print_heading_with_help(get_string("editingassessmentelements", "exercise"), "elements", "exercise"); ?> id)) { error("Only teachers can look at this page"); } $form = (object)$HTTP_POST_VARS; // let's not fool around here, dump the junk! delete_records("exercise_elements", "exerciseid", $exercise->id); // determine wich type of grading switch ($exercise->gradingstrategy) { case 0: // no grading // Insert all the elements that contain something foreach ($form->description as $key => $description) { if ($description) { unset($element); $element->description = $description; $element->exerciseid = $exercise->id; $element->elementno = $key; if (!$element->id = insert_record("exercise_elements", $element)) { error("Could not insert exercise element!"); } } } break; case 1: // accumulative grading // Insert all the elements that contain something foreach ($form->description as $key => $description) { if ($description) { unset($element); $element->description = $description; $element->exerciseid = $exercise->id; $element->elementno = $key; if (isset($form->scale[$key])) { $element->scale = $form->scale[$key]; switch ($EXERCISE_SCALES[$form->scale[$key]]['type']) { case 'radio' : $element->maxscore = $EXERCISE_SCALES[$form->scale[$key]]['size'] - 1; break; case 'selection' : $element->maxscore = $EXERCISE_SCALES[$form->scale[$key]]['size']; break; } } if (isset($form->weight[$key])) { $element->weight = $form->weight[$key]; } if (!$element->id = insert_record("exercise_elements", $element)) { error("Could not insert exercise element!"); } } } break; case 2: // error banded grading... case 3: // ...and criterion grading // Insert all the elements that contain something, the number of descriptions is // one less than the number of grades foreach ($form->maxscore as $key => $themaxscore) { unset($element); $element->exerciseid = $exercise->id; $element->elementno = $key; $element->maxscore = $themaxscore; if (isset($form->description[$key])) { $element->description = $form->description[$key]; } if (isset($form->weight[$key])) { $element->weight = $form->weight[$key]; } if (!$element->id = insert_record("exercise_elements", $element)) { error("Could not insert exercise element!"); } } break; case 4: // ...and criteria grading // Insert all the elements that contain something foreach ($form->description as $key => $description) { unset($element); $element->exerciseid = $exercise->id; $element->elementno = $key; $element->description = $description; $element->weight = $form->weight[$key]; for ($j=0;$j<5;$j++) { if (empty($form->rubric[$key][$j])) break; } $element->maxscore = $j - 1; if (!$element->id = insert_record("exercise_elements", $element)) { error("Could not insert exercise element!"); } } // let's not fool around here, dump the junk! delete_records("exercise_rubrics", "exerciseid", $exercise->id); for ($i=0;$i<$exercise->nelements;$i++) { for ($j=0;$j<5;$j++) { unset($element); if (empty($form->rubric[$i][$j])) { // OK to have an element with fewer than 5 items break; } $element->exerciseid = $exercise->id; $element->elementno = $i; $element->rubricno = $j; $element->description = $form->rubric[$i][$j]; if (!$element->id = insert_record("exercise_rubrics", $element)) { error("Could not insert exercise element!"); } } } break; } // end of switch redirect("view.php?id=$cm->id", get_string("savedok", "exercise")); } /****************** list assessments for grading (Student submissions)(by teachers)*********************/ elseif ($action == 'listungradedstudentsubmissions') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } exercise_list_ungraded_assessments($exercise, "student"); print_continue("view.php?id=$cm->id"); } /***************** list assessments for grading student assessments ( linked to the ******************Teacher's submissions) (by teachers)****/ elseif ($action == 'listungradedstudentassessments') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } exercise_list_ungraded_assessments($exercise, "teacher"); print_continue("view.php?id=$cm->id"); } /****************** list teacher submissions ***********************/ elseif ($action == 'listteachersubmissions') { exercise_list_teacher_submissions($exercise, $USER); print_continue("view.php?id=$cm->id"); } /****************** teacher assessment : grading of assessment and submission (from student) ************/ elseif ($action == 'teacherassessment') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } require_variable($aid); require_variable($sid); if (!$assessment = get_record("exercise_assessments", "id", $aid)) { error("Teacher assessment: User's assessment record not found"); } if (!$submission = get_record("exercise_submissions", "id", $sid)) { error("Teacher assessment: User's submission record not found"); } exercise_print_dual_assessment_form($exercise, $assessment, $submission, $_SERVER["HTTP_REFERER"]); } /****************** teacher table : show assessments by exercise and teacher ************/ elseif ($action == 'teachertable') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } exercise_print_teacher_table($course); print_continue("index.php?id=$course->id"); } /****************** update assessment (by teacher or student) ***************************/ elseif ($action == 'updateassessment') { $timenow = time(); $form = (object)$HTTP_POST_VARS; require_variable($aid); if (! $assessment = get_record("exercise_assessments", "id", $aid)) { error("exercise assessment is misconfigured"); } // first get the assignment elements for maxscores and weights... if (!$elementsraw = get_records("exercise_elements", "exerciseid", $exercise->id, "elementno ASC")) { print_string("noteonassignmentelements", "exercise"); } else { foreach ($elementsraw as $element) { $elements[] = $element; // to renumber index 0,1,2... } } // don't fiddle about, delete all the old and then add the new! delete_records("exercise_grades", "assessmentid", $assessment->id); //determine what kind of grading we have switch ($exercise->gradingstrategy) { case 0: // no grading // Insert all the elements that contain something foreach ($form->feedback as $key => $thefeedback) { unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = $key; $element->feedback = $thefeedback; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } } $grade = 0; // set to satisfy save to db break; case 1: // accumulative grading // Insert all the elements that contain something foreach ($form->grade as $key => $thegrade) { unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = $key; $element->feedback = $form->feedback[$key]; $element->grade = $thegrade; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } } // now work out the grade... $rawgrade=0; $totalweight=0; foreach ($form->grade as $key => $grade) { $maxscore = $elements[$key]->maxscore; $weight = $EXERCISE_EWEIGHTS[$elements[$key]->weight]; if ($weight > 0) { $totalweight += $weight; } $rawgrade += ($grade / $maxscore) * $weight; // echo "\$key, \$maxscore, \$weight, \$totalweight, \$grade, \$rawgrade : $key, $maxscore, $weight, $totalweight, $grade, $rawgrade".get_string("weightederrorcount", "exercise", intval($error + 0.5)). // " ".get_string("adjustment", "exercise").": ".$form->grade[$i]."\n"; // check the grade for sanity! if ($grade > 100.0) { $grade = 100.0; } if ($grade < 0.0) { $grade = 0.0; } break; case 3: // criteria grading // save in the selected criteria value in element zero, unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = 0; $element->grade = $form->grade[0]; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } // now save the adjustment in element one unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = 1; $element->grade = $form->grade[1]; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } $grade = ($elements[$form->grade[0]]->maxscore + $form->grade[1]); // check the grade for sanity! if ($grade >100.0) { $grade = 100.0; } if ($grade < 0.0) { $grade = 0.0; } break; case 4: // rubric grading (identical to accumulative grading) // Insert all the elements that contain something foreach ($form->grade as $key => $thegrade) { unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = $key; $element->feedback = $form->feedback[$key]; $element->grade = $thegrade; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } } // now work out the grade... $rawgrade=0; $totalweight=0; foreach ($form->grade as $key => $grade) { $maxscore = $elements[$key]->maxscore; $weight = $EXERCISE_EWEIGHTS[$elements[$key]->weight]; if ($weight > 0) { $totalweight += $weight; } $rawgrade += ($grade / $maxscore) * $weight; } $grade = 100.0 * ($rawgrade / $totalweight); break; } // end of switch // update the time of the assessment record (may be re-edited)... set_field("exercise_assessments", "timecreated", $timenow, "id", $assessment->id); set_field("exercise_assessments", "grade", $grade, "id", $assessment->id); // ...and clear any grading of this assessment (these assessments are never graded but...) set_field("exercise_assessments", "timegraded", 0, "id", $assessment->id); set_field("exercise_assessments", "gradinggrade", 0, "id", $assessment->id); // any comment? if (!empty($form->generalcomment)) { set_field("exercise_assessments", "generalcomment", $form->generalcomment, "id", $assessment->id); } // is user allowed to resubmit? if (isteacher($course->id)) { if (!$submission = get_record("exercise_submissions", "id", $assessment->submissionid)) { error ("Updateassessment: submission record not found"); } if ($form->resubmit == 1) { set_field("exercise_submissions", "resubmit", 1, "id", $submission->id); } else { // clear resubmit flag set_field("exercise_submissions", "resubmit", 0, "id", $submission->id); } } add_to_log($course->id, "exercise", "assess", "view.php?id=$cm->id", "$assessment->id"); // set up return address if (!$returnto = $form->returnto) { $returnto = "view.php?id=$cm->id"; } // show grade if grading strategy is not zero if ($exercise->gradingstrategy) { redirect($returnto, "
".get_string("thegradeis", "exercise").": ". number_format($grade * $exercise->grade / 100.0, 1)." (".get_string("maximumgrade"). " ".number_format($exercise->grade).")
", 1); } else { redirect($returnto); } } /****************** update dual assessment (by teacher only) ***************************/ elseif ($action == 'updatedualassessment') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } $timenow = time(); $form = (object)$HTTP_POST_VARS; // first do the teacher's comments and grading grade of the user's assessment if (!$assessment = get_record("exercise_assessments", "id", $form->aid)) { error("Update dual assessment: user's assessment record not found"); } //save the comment and grade for the assessment if (isset($form->teachercomment)) { set_field("exercise_assessments", "teachercomment", $form->teachercomment, "id", $assessment->id); set_field("exercise_assessments", "gradinggrade", $form->gradinggrade, "id", $assessment->id); set_field("exercise_assessments", "timegraded", $timenow, "id", $assessment->id); set_field("exercise_assessments", "mailed", 0, "id", $assessment->id); echo "".get_string("weightederrorcount", "exercise", intval($error + 0.5))."\n"; break; case 3: // criteria grading // save in the selected criteria value in element zero, unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = 0; $element->grade = $form->grade[0]; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } // now save the adjustment in element one unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = 1; $element->grade = $form->grade[1]; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } $grade = ($elements[$form->grade[0]]->maxscore + $form->grade[1]); break; case 4: // rubric grading (identical to accumulative grading) // Insert all the elements that contain something foreach ($form->grade as $key => $thegrade) { unset($element); $element->exerciseid = $exercise->id; $element->assessmentid = $assessment->id; $element->elementno = $key; $element->feedback = $form->feedback[$key]; $element->grade = $thegrade; if (!$element->id = insert_record("exercise_grades", $element)) { error("Could not insert exercise element!"); } } // now work out the grade... $rawgrade=0; $totalweight=0; foreach ($form->grade as $key => $grade) { $maxscore = $elements[$key]->maxscore; $weight = $EXERCISE_EWEIGHTS[$elements[$key]->weight]; if ($weight > 0) { $totalweight += $weight; } $rawgrade += ($grade / $maxscore) * $weight; } $grade = 100.0 * ($rawgrade / $totalweight); break; } // end of switch // update the time of the assessment record (may be re-edited)... set_field("exercise_assessments", "timecreated", $timenow, "id", $assessment->id); set_field("exercise_assessments", "grade", $grade, "id", $assessment->id); // ...and clear any grading of this assessment (never needed but...) set_field("exercise_assessments", "timegraded", 0, "id", $assessment->id); set_field("exercise_assessments", "gradinggrade", 0, "id", $assessment->id); // any comment? if (!empty($form->generalcomment)) { set_field("exercise_assessments", "generalcomment", $form->generalcomment, "id", $assessment->id); } // is user allowed to resubmit? if ($form->resubmit == 1) { set_field("exercise_submissions", "resubmit", 1, "id", $submission->id); } else { // clear resubmit flag set_field("exercise_submissions", "resubmit", 0, "id", $submission->id); } add_to_log($course->id, "exercise", "assess", "view.php?id=$cm->id", "$assessment->id"); // set up return address if (!$returnto = $form->returnto) { $returnto = "view.php?id=$cm->id"; } // show grade if grading strategy is not zero if ($exercise->gradingstrategy) { redirect($returnto, "
".get_string("thegradeis", "exercise").": ". number_format($grade * $exercise->grade / 100.0, 1)." (".get_string("maximumgrade"). " ".number_format($exercise->grade).")
", 1); } else { redirect($returnto); } } /****************** update grading grade(by teacher) ***************************/ elseif ($action == 'updategradinggrade') { if (!isteacher($course->id)) { error("Only teachers can look at this page"); } require_variable($aid); if (!set_field("exercise_assessments", "gradinggrade", $_POST['gradinggrade'], "id", $_POST['aid'])) { error("Update grading grade: asseesment not updated"); } redirect("submissions.php?id=$cm->id&action=adminlist", get_string("savedok", "exercise"), 1); } /****************** user confirm delete ************************************/ elseif ($action == 'userconfirmdelete' ) { if (empty($_GET['aid'])) { error("User confirm delete: assessment id missing"); } notice_yesno(get_string("confirmdeletionofthisitem","exercise", get_string("assessment", "exercise")), "assessments.php?action=userdelete&id=$cm->id&aid=$_GET[aid]", "view.php?id=$cm->id"); } /****************** user delete ************************************/ elseif ($action == 'userdelete' ) { if (empty($_GET['aid'])) { error("User delete: assessment id missing"); } print_string("deleting", "exercise"); // first delete all the associated records... delete_records("exercise_grades", "assessmentid", $_GET['aid']); // ...now delete the assessment... delete_records("exercise_assessments", "id", $_GET['aid']); print_continue("view.php?id=$cm->id"); } /****************** view assessment ***********************/ elseif ($action == 'viewassessment') { // get the assessment record if (!$assessment = get_record("exercise_assessments", "id", $_GET['aid'])) { error("Assessment record not found"); } // show assessment but don't allow changes exercise_print_assessment_form($exercise, $assessment); print_continue("view.php?id=$cm->id"); } /*************** no man's land **************************************/ else { error("Fatal Error: Unknown Action: ".$action."\n"); } print_footer($course); ?>