3 ///////////////////////////////////////////////////////////////////////////
5 // NOTICE OF COPYRIGHT //
7 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
8 // http://moodle.com //
10 // Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com //
12 // This program is free software; you can redistribute it and/or modify //
13 // it under the terms of the GNU General Public License as published by //
14 // the Free Software Foundation; either version 2 of the License, or //
15 // (at your option) any later version. //
17 // This program is distributed in the hope that it will be useful, //
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
20 // GNU General Public License for more details: //
22 // http://www.gnu.org/copyleft/gpl.html //
24 ///////////////////////////////////////////////////////////////////////////
26 require_once($CFG->dirroot
.'/lib/gradelib.php');
27 require_once($CFG->dirroot
.'/grade/lib.php');
28 require_once($CFG->dirroot
.'/grade/export/grade_export_form.php');
35 var $plugin; // plgin name - must be filled in subclasses!
37 var $grade_items; // list of all course grade items
38 var $groupid; // groupid, 0 means all groups
39 var $course; // course object
40 var $columns; // array of grade_items selected for export
42 var $previewrows; // number of rows in preview
43 var $export_letters; // export letters
44 var $export_feedback; // export feedback
45 var $userkey; // export using private user key
47 var $updatedgradesonly; // only export updated grades
48 var $displaytype; // display type (e.g. real, percentages, letter) for exports
49 var $decimalpoints; // number of decimal points for exports
51 * Constructor should set up all the private variables ready to be pulled
52 * @param object $course
53 * @param int $groupid id of selected group, 0 means all
54 * @param string $itemlist comma separated list of item ids, empty means all
55 * @param boolean $export_feedback
56 * @param boolean $export_letters
57 * @note Exporting as letters will lead to data loss if that exported set it re-imported.
59 function grade_export($course, $groupid=0, $itemlist='', $export_feedback=false, $updatedgradesonly = false, $displaytype = GRADE_DISPLAY_TYPE_REAL
, $decimalpoints = 2) {
60 $this->course
= $course;
61 $this->groupid
= $groupid;
62 $this->grade_items
= grade_item
::fetch_all(array('courseid'=>$this->course
->id
));
64 $this->columns
= array();
65 if (!empty($itemlist)) {
66 $itemids = explode(',', $itemlist);
67 // remove items that are not requested
68 foreach ($itemids as $itemid) {
69 if (array_key_exists($itemid, $this->grade_items
)) {
70 $this->columns
[$itemid] =& $this->grade_items
[$itemid];
74 foreach ($this->grade_items
as $itemid=>$unused) {
75 $this->columns
[$itemid] =& $this->grade_items
[$itemid];
79 $this->export_feedback
= $export_feedback;
81 $this->previewrows
= false;
82 $this->updatedgradesonly
= $updatedgradesonly;
84 $this->displaytype
= $displaytype;
85 $this->decimalpoints
= $decimalpoints;
89 * Init object based using data from form
90 * @param object $formdata
92 function process_form($formdata) {
95 $this->columns
= array();
96 if (!empty($formdata->itemids
)) {
97 foreach ($formdata->itemids
as $itemid=>$selected) {
98 if ($selected and array_key_exists($itemid, $this->grade_items
)) {
99 $this->columns
[$itemid] =& $this->grade_items
[$itemid];
103 foreach ($this->grade_items
as $itemid=>$unused) {
104 $this->columns
[$itemid] =& $this->grade_items
[$itemid];
108 if (isset($formdata->key
)) {
109 if ($formdata->key
== 1 && isset($formdata->iprestriction
) && isset($formdata->validuntil
)) {
111 $formdata->key
= create_user_key('grade/export', $USER->id
, $this->course
->id
, $formdata->iprestriction
, $formdata->validuntil
);
113 $this->userkey
= $formdata->key
;
116 if (isset($formdata->export_letters
)) {
117 $this->export_letters
= $formdata->export_letters
;
120 if (isset($formdata->export_feedback
)) {
121 $this->export_feedback
= $formdata->export_feedback
;
124 if (isset($formdata->previewrows
)) {
125 $this->previewrows
= $formdata->previewrows
;
131 * Update exported field in grade_grades table
134 function track_exports() {
137 /// Whether this plugin is entitled to update export time
138 if ($expplugins = explode(",", $CFG->gradeexport
)) {
139 if (in_array($this->plugin
, $expplugins)) {
150 * Returns string representation of final grade
151 * @param $object $grade instance of grade_grade class
154 function format_grade($grade) {
155 return grade_format_gradevalue($grade->finalgrade
, $this->grade_items
[$grade->itemid
], false, $this->displaytype
, $this->decimalpoints
);
159 * Returns the name of column in export
160 * @param object $grade_item
161 * @param boolena $feedback feedback colum
164 function format_column_name($grade_item, $feedback=false) {
165 if ($grade_item->itemtype
== 'mod') {
166 $name = get_string('modulename', $grade_item->itemmodule
).': '.$grade_item->get_name();
168 $name = $grade_item->get_name();
172 $name .= ' ('.get_string('feedback').')';
175 return strip_tags($name);
179 * Returns formatted grade feedback
180 * @param object $feedback object with properties feedback and feedbackformat
183 function format_feedback($feedback) {
184 return strip_tags(format_text($feedback->feedback
, $feedback->feedbackformat
));
188 * Implemented by child class
190 function print_grades() { }
193 * Prints preview of exported grades on screen as a feedback mechanism
195 function display_preview() {
197 print_heading(get_string('previewrows', 'grades'));
201 echo '<th>'.get_string("firstname")."</th>".
202 '<th>'.get_string("lastname")."</th>".
203 '<th>'.get_string("idnumber")."</th>".
204 '<th>'.get_string("institution")."</th>".
205 '<th>'.get_string("department")."</th>".
206 '<th>'.get_string("email")."</th>";
207 foreach ($this->columns
as $grade_item) {
208 echo '<th>'.$this->format_column_name($grade_item).'</th>';
210 /// add a column_feedback column
211 if ($this->export_feedback
) {
212 echo '<th>'.$this->format_column_name($grade_item, true).'</th>';
216 /// Print all the lines of data.
219 $gui = new graded_users_iterator($this->course
, $this->columns
, $this->groupid
);
221 while ($userdata = $gui->next_user()) {
222 // number of preview rows
223 if ($this->previewrows
and $this->previewrows
<= $i) {
226 $user = $userdata->user
;
227 // if (empty($user->idnumber)) { // Not sure why this was here, ccommented out for MDL-13722
231 $gradeupdated = false; // if no grade is update at all for this user, do not display this row
233 foreach ($this->columns
as $itemid=>$unused) {
234 $gradetxt = $this->format_grade($userdata->grades
[$itemid]);
236 // get the status of this grade, and put it through track to get the status
237 $g = new grade_export_update_buffer();
238 $grade_grade = new grade_grade(array('itemid'=>$itemid, 'userid'=>$user->id
));
239 $status = $g->track($grade_grade);
241 if ($this->updatedgradesonly
&& ($status == 'nochange' ||
$status == 'unknown')) {
242 $rowstr .= '<td>'.get_string('unchangedgrade', 'grades').'</td>';
244 $rowstr .= "<td>$gradetxt</td>";
245 $gradeupdated = true;
248 if ($this->export_feedback
) {
249 $rowstr .= '<td>'.$this->format_feedback($userdata->feedbacks
[$itemid]).'</td>';
253 // if we are requesting updated grades only, we are not interested in this user at all
254 if (!$gradeupdated && $this->updatedgradesonly
) {
259 echo "<td>$user->firstname</td><td>$user->lastname</td><td>$user->idnumber</td><td>$user->institution</td><td>$user->department</td><td>$user->email</td>";
263 $i++
; // increment the counter
270 * Returns array of parameters used by dump.php and export.php.
273 function get_export_params() {
274 $itemids = array_keys($this->columns
);
276 $params = array('id' =>$this->course
->id
,
277 'groupid' =>$this->groupid
,
278 'itemids' =>implode(',', $itemids),
279 'export_letters' =>$this->export_letters
,
280 'export_feedback' =>$this->export_feedback
,
281 'updatedgradesonly' =>$this->updatedgradesonly
,
282 'displaytype' =>$this->displaytype
,
283 'decimalpoints' =>$this->decimalpoints
);
289 * Either prints a "Export" box, which will redirect the user to the download page,
290 * or prints the URL for the published data.
293 function print_continue() {
296 $params = $this->get_export_params();
299 print_heading(get_string('export', 'grades'));
301 echo '<div class="gradeexportlink">';
302 if (!$this->userkey
) { // this button should trigger a download prompt
303 print_single_button($CFG->wwwroot
.'/grade/export/'.$this->plugin
.'/export.php',
304 $params, get_string('download', 'admin'));
309 foreach($params as $name=>$value) {
310 $paramstr .= $sep.$name.'='.$value;
314 $link = $CFG->wwwroot
.'/grade/export/'.$this->plugin
.'/dump.php'.$paramstr.'&key='.$this->userkey
;
316 echo get_string('download', 'admin').': <a href="'.$link.'">'.$link.'</a>';
323 * This class is used to update the exported field in grade_grades.
324 * It does internal buffering to speedup the db operations.
326 class grade_export_update_buffer
{
331 * Constructor - creates the buffer and initialises the time stamp
333 function grade_export_update_buffer() {
334 $this->update_list
= array();
335 $this->export_time
= time();
338 function flush($buffersize) {
341 if (count($this->update_list
) > $buffersize) {
342 $list = implode(',', $this->update_list
);
343 $sql = "UPDATE {$CFG->prefix}grade_grades SET exported = {$this->export_time} WHERE id IN ($list)";
344 execute_sql($sql, false);
345 $this->update_list
= array();
350 * Track grade export status
351 * @param object $grade_grade
352 * @return string $status (unknow, new, regrade, nochange)
354 function track($grade_grade) {
356 if (empty($grade_grade->exported
) or empty($grade_grade->timemodified
)) {
357 if (is_null($grade_grade->finalgrade
)) {
358 // grade does not exist yet
362 $this->update_list
[] = $grade_grade->id
;
365 } else if ($grade_grade->exported
< $grade_grade->timemodified
) {
367 $this->update_list
[] = $grade_grade->id
;
369 } else if ($grade_grade->exported
>= $grade_grade->timemodified
) {
370 $status = 'nochange';
373 // something is wrong?
383 * Flush and close the buffer.