소스 검색

Teacher view updated:
- Loading all submissions for each student
- If student doesn't have a submission its replaced by a dash

Bernardo 2 년 전
부모
커밋
63d1c86a1d
4개의 변경된 파일108개의 추가작업 그리고 48개의 파일을 삭제
  1. 2 2
      forms/submission/submission.php
  2. 1 2
      libs/student_viewlib.php
  3. 101 42
      libs/teacher_viewlib.php
  4. 4 2
      view.php

+ 2 - 2
forms/submission/submission.php

@@ -19,7 +19,7 @@ require_once('../../locallib.php');
 require_once('../../lib.php');
 
 // Test libs
-require_once('../../libs/testlib.php'); // Remove when going to production
+// require_once('../../libs/testlib.php'); // Remove when going to production
 
 require_once('submission_form.php'); // Requires Form class File
 require_once('submission_form_functions.php'); // Require functions file for submission form
@@ -86,7 +86,7 @@ if ($mform->is_cancelled()) {
     redirect("view.php?id=$cm->id&edit=1");
 } else if ($formdata = $mform->get_data()) {
 
-    reset_submissions($context->id); // Remove when going to production
+    // reset_submissions($context->id); // Remove when going to production
 
     $entry = create_submission($formdata, $gradeimporter->id, $USER->id);
 

+ 1 - 2
libs/student_viewlib.php

@@ -77,8 +77,7 @@ function make_feedback_table ($feedbacks, $cmid) {
 }
 
 function get_file ($feedback, $cmid) {
-    global $CFG;
-    $fs = get_file_storage();
+
     $context = context_module::instance($cmid);
 
     $url = moodle_url::make_pluginfile_url($context->id,

+ 101 - 42
libs/teacher_viewlib.php

@@ -17,49 +17,53 @@ class Teacherview {
     private $cmid;
     private $gradeimporterid;
     private $context;
-    private $table;
-    private $cellstyle = "border:1px solid black";
-
-    public function __construct(int $cmid, int $gradeimporterid) {
-        $this->$cmid = $cmid;
-        $this->$gradeimporterid = $gradeimporterid;
-        $this->context = context_module::instance($this->get_cmid);
-        $this->$table = make_table($cmid, $gradeimporterid);
+    private $cellstyle = "border:1px solid black; text-align:center";
+
+    public function __construct (int $cmid, int $gradeimporterid) {
+        $this->cmid = $cmid;
+        $this->gradeimporterid = $gradeimporterid;
+        $this->context = context_module::instance($cmid);
     }
 
-    private function get_cmid() {
+    private function get_cmid () {
         return $this->cmid;
     }
-    private function get_gradeimporterid() {
+    private function get_gradeimporterid () {
         return $this->gradeimporterid;
     }
-    private function get_context() {
+    private function get_context () {
         return $this->context;
     }
-    private function get_cellstyle() {
+    private function get_cellstyle () {
         return $this->cellstyle;
     }
-    public function get_table() {
-        return $this->table;
-    }
-
 
-    private function make_table() {
+    public function make_table () {
         global $DB, $CFG;
 
         // Prepare variables
-        $studentlist = get_studentlist();
+        $studentlist = $this->get_studentlist();
+        $submissions = $this->get_submissions();
 
         // Create table
         $table = new html_table();
         $table->align = array('center');
         $table->attributes = array('class' => 'generaltable mod_index');
-        $table->head = get_table_head();
 
-        return $table;
+        $submissions = $this->get_submissions();
+        if (!$submissions) {
+            $this->no_submissions();
+            return;
+        }
+        $table->data[] = $this->get_table_head($submissions);
+        foreach ($studentlist as $student) {
+            $table->data[] = $this->get_studentsubmissions($student, $submissions);
+        }
+
+        return html_writer::table($table);
     }
 
-    private function get_studentlist() {
+    private function get_studentlist () {
         // Get students list with userid as key and fullname as value
         $enrolledusers = get_enrolled_users($this->get_context(), 'mod/gradeimporter:view',
                                         0, 'u.id, u.firstname, u.lastname',
@@ -67,38 +71,93 @@ class Teacherview {
                                     );
         $studentlist = array();
         foreach ($enrolledusers as $user) {
-            $userslist[$user->id] = array('name' => $user->firstname." ".$user->lastname);
+            $studentlist[$user->id] = array('name' => $user->firstname." ".$user->lastname,
+                                            'id' => $user->id);
         }
+
         return $studentlist;
     }
 
-    private function get_table_head() {
-        global $CFG;
-        $tp = $CFG->prefix;
+    private function get_table_head ($submissions) {
         // Creates teacher view table head
-        $head = new html_table_row();
-
-        // Creates name column header
-        $cell = new html_table_cell(get_string('nameCol', 'gradeimporter'));
-        $cell->style = $this->get_cellstyle();
-        $cell->colspan = 1;
+        $header = new html_table_row();
 
         // Add name header to header row
-        $header->cells[] = $cell;
+        $header->cells[] = $this->make_cell(get_string('nameCol', 'gradeimporter'), 1);
 
-        // Get Submissions names and ids
-        $sql = "SELECT id, name, type
-                FROM {$tp}gradeimporter_submission
-                WHERE gradeimporterid = {$this->get_gradeimporterid()}
-                ORDER BY type, id";
-        $submissions = $DB->get_records($sql);
         foreach ($submissions as $submission) {
             // $subname = editSub($submission->name, $gradeimporterid, $cmid, $submission->id);
-            $cell = new html_table_cell($submission->name);
-            $cell->colspan = 2;
-            $cell->style = $this->get_cellstyle();
-            $header->cells[] = $cell;
+            $header->cells[] = $this->make_cell($submission->name, 2);
         }
         return $header;
     }
+
+    private function get_studentsubmissions ($student, $submissions) {
+        global $DB;
+        // Create new row for the student
+        $row = new html_table_row();
+
+        // Set first cell of the row as the students fullname
+        $row->cells[] = $this->make_cell($student["name"], 1);
+
+        // Foreach submission checks if student has a feedback for it
+        // If they have, fill it with grade + filename (possibly grade+link to full feedback)
+        // If they don't have fill it with grade and filename as -
+        foreach ($submissions as $submission) {
+            $feedback = $DB->get_record('gradeimporter_feedback',
+                                        ['submissionid' => $submission->id,
+                                            'studentid' => $student['id']]
+                                        );
+            if ($feedback) {
+                $fileurl = $this->feedback_url($feedback);
+                $grade = $feedback->grade;
+            } else {
+                $fileurl = '-';
+                $grade = '-';
+            }
+            $row->cells[] = $this->make_cell($grade, 1);
+
+            $row->cells[] = $this->make_cell($fileurl, 1);
+        }
+        return $row;
+    }
+
+    private function get_submissions () {
+        global $CFG, $DB;
+        // Get table prefix
+        $tp = $CFG->prefix;
+
+        // Build Query
+        $sql = "SELECT id, name, type
+                FROM {$tp}gradeimporter_submission
+                WHERE gradeimporterid ={$this->get_gradeimporterid()}
+                ORDER BY type, id";
+        // Query DB
+        $submissions = $DB->get_records_sql($sql);
+        // Return submissions
+        return $submissions;
+    }
+
+    private function no_submissions () {
+        echo "No submissions";
+    }
+
+    private function feedback_url ($feedback) {
+        $url = moodle_url::make_pluginfile_url($feedback->contextid,
+                                            'mod_gradeimporter',
+                                            'submissionfiles',
+                                            0,
+                                            "/",
+                                            $feedback->name,
+                                            true
+                                        );
+        return "<a href='{$url}'>$feedback->name</a>";
+    }
+
+    private function make_cell ($text, $colspan) {
+        $cell = new html_table_cell($text);
+        $cell->style = $this->get_cellstyle();
+        $cell->colspan = $colspan;
+        return $cell;
+    }
 }

+ 4 - 2
view.php

@@ -118,8 +118,10 @@ require_once(dirname(__FILE__).'/locallib.php');
 
 if (has_capability('mod/gradeimporter:edit', $context)) {
     // Loads teacher view.
-    get_teacher_view($cm->id, $gradeimporter->id);
-    // get_teacher_view($cm->id, $gradeimporter->id, $enrolledusers);
+    // get_teacher_view($cm->id, $gradeimporter->id);
+    $teacherview = new Teacherview($cm->id, $gradeimporter->id);
+    $teachertable = $teacherview->make_table();
+    echo $teachertable;
 } else {
     // Load student view