MDL-63086 block_rss_client: Move skip time calculation to task
[moodle.git] / grade / lib.php
blob5cf9c57246c4560b04b758033f27b34fca3b8400
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Functions used by gradebook plugins and reports.
20 * @package core_grades
21 * @copyright 2009 Petr Skoda and Nicolas Connault
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once($CFG->libdir . '/gradelib.php');
26 require_once($CFG->dirroot . '/grade/export/lib.php');
28 /**
29 * This class iterates over all users that are graded in a course.
30 * Returns detailed info about users and their grades.
32 * @author Petr Skoda <skodak@moodle.org>
33 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35 class graded_users_iterator {
37 /**
38 * The couse whose users we are interested in
40 protected $course;
42 /**
43 * An array of grade items or null if only user data was requested
45 protected $grade_items;
47 /**
48 * The group ID we are interested in. 0 means all groups.
50 protected $groupid;
52 /**
53 * A recordset of graded users
55 protected $users_rs;
57 /**
58 * A recordset of user grades (grade_grade instances)
60 protected $grades_rs;
62 /**
63 * Array used when moving to next user while iterating through the grades recordset
65 protected $gradestack;
67 /**
68 * The first field of the users table by which the array of users will be sorted
70 protected $sortfield1;
72 /**
73 * Should sortfield1 be ASC or DESC
75 protected $sortorder1;
77 /**
78 * The second field of the users table by which the array of users will be sorted
80 protected $sortfield2;
82 /**
83 * Should sortfield2 be ASC or DESC
85 protected $sortorder2;
87 /**
88 * Should users whose enrolment has been suspended be ignored?
90 protected $onlyactive = false;
92 /**
93 * Enable user custom fields
95 protected $allowusercustomfields = false;
97 /**
98 * List of suspended users in course. This includes users whose enrolment status is suspended
99 * or enrolment has expired or not started.
101 protected $suspendedusers = array();
104 * Constructor
106 * @param object $course A course object
107 * @param array $grade_items array of grade items, if not specified only user info returned
108 * @param int $groupid iterate only group users if present
109 * @param string $sortfield1 The first field of the users table by which the array of users will be sorted
110 * @param string $sortorder1 The order in which the first sorting field will be sorted (ASC or DESC)
111 * @param string $sortfield2 The second field of the users table by which the array of users will be sorted
112 * @param string $sortorder2 The order in which the second sorting field will be sorted (ASC or DESC)
114 public function __construct($course, $grade_items=null, $groupid=0,
115 $sortfield1='lastname', $sortorder1='ASC',
116 $sortfield2='firstname', $sortorder2='ASC') {
117 $this->course = $course;
118 $this->grade_items = $grade_items;
119 $this->groupid = $groupid;
120 $this->sortfield1 = $sortfield1;
121 $this->sortorder1 = $sortorder1;
122 $this->sortfield2 = $sortfield2;
123 $this->sortorder2 = $sortorder2;
125 $this->gradestack = array();
129 * Initialise the iterator
131 * @return boolean success
133 public function init() {
134 global $CFG, $DB;
136 $this->close();
138 export_verify_grades($this->course->id);
139 $course_item = grade_item::fetch_course_item($this->course->id);
140 if ($course_item->needsupdate) {
141 // Can not calculate all final grades - sorry.
142 return false;
145 $coursecontext = context_course::instance($this->course->id);
147 list($relatedctxsql, $relatedctxparams) = $DB->get_in_or_equal($coursecontext->get_parent_context_ids(true), SQL_PARAMS_NAMED, 'relatedctx');
148 list($gradebookroles_sql, $params) = $DB->get_in_or_equal(explode(',', $CFG->gradebookroles), SQL_PARAMS_NAMED, 'grbr');
149 list($enrolledsql, $enrolledparams) = get_enrolled_sql($coursecontext, '', 0, $this->onlyactive);
151 $params = array_merge($params, $enrolledparams, $relatedctxparams);
153 if ($this->groupid) {
154 $groupsql = "INNER JOIN {groups_members} gm ON gm.userid = u.id";
155 $groupwheresql = "AND gm.groupid = :groupid";
156 // $params contents: gradebookroles
157 $params['groupid'] = $this->groupid;
158 } else {
159 $groupsql = "";
160 $groupwheresql = "";
163 if (empty($this->sortfield1)) {
164 // We must do some sorting even if not specified.
165 $ofields = ", u.id AS usrt";
166 $order = "usrt ASC";
168 } else {
169 $ofields = ", u.$this->sortfield1 AS usrt1";
170 $order = "usrt1 $this->sortorder1";
171 if (!empty($this->sortfield2)) {
172 $ofields .= ", u.$this->sortfield2 AS usrt2";
173 $order .= ", usrt2 $this->sortorder2";
175 if ($this->sortfield1 != 'id' and $this->sortfield2 != 'id') {
176 // User order MUST be the same in both queries,
177 // must include the only unique user->id if not already present.
178 $ofields .= ", u.id AS usrt";
179 $order .= ", usrt ASC";
183 $userfields = 'u.*';
184 $customfieldssql = '';
185 if ($this->allowusercustomfields && !empty($CFG->grade_export_customprofilefields)) {
186 $customfieldscount = 0;
187 $customfieldsarray = grade_helper::get_user_profile_fields($this->course->id, $this->allowusercustomfields);
188 foreach ($customfieldsarray as $field) {
189 if (!empty($field->customid)) {
190 $customfieldssql .= "
191 LEFT JOIN (SELECT * FROM {user_info_data}
192 WHERE fieldid = :cf$customfieldscount) cf$customfieldscount
193 ON u.id = cf$customfieldscount.userid";
194 $userfields .= ", cf$customfieldscount.data AS customfield_{$field->customid}";
195 $params['cf'.$customfieldscount] = $field->customid;
196 $customfieldscount++;
201 $users_sql = "SELECT $userfields $ofields
202 FROM {user} u
203 JOIN ($enrolledsql) je ON je.id = u.id
204 $groupsql $customfieldssql
205 JOIN (
206 SELECT DISTINCT ra.userid
207 FROM {role_assignments} ra
208 WHERE ra.roleid $gradebookroles_sql
209 AND ra.contextid $relatedctxsql
210 ) rainner ON rainner.userid = u.id
211 WHERE u.deleted = 0
212 $groupwheresql
213 ORDER BY $order";
214 $this->users_rs = $DB->get_recordset_sql($users_sql, $params);
216 if (!$this->onlyactive) {
217 $context = context_course::instance($this->course->id);
218 $this->suspendedusers = get_suspended_userids($context);
219 } else {
220 $this->suspendedusers = array();
223 if (!empty($this->grade_items)) {
224 $itemids = array_keys($this->grade_items);
225 list($itemidsql, $grades_params) = $DB->get_in_or_equal($itemids, SQL_PARAMS_NAMED, 'items');
226 $params = array_merge($params, $grades_params);
228 $grades_sql = "SELECT g.* $ofields
229 FROM {grade_grades} g
230 JOIN {user} u ON g.userid = u.id
231 JOIN ($enrolledsql) je ON je.id = u.id
232 $groupsql
233 JOIN (
234 SELECT DISTINCT ra.userid
235 FROM {role_assignments} ra
236 WHERE ra.roleid $gradebookroles_sql
237 AND ra.contextid $relatedctxsql
238 ) rainner ON rainner.userid = u.id
239 WHERE u.deleted = 0
240 AND g.itemid $itemidsql
241 $groupwheresql
242 ORDER BY $order, g.itemid ASC";
243 $this->grades_rs = $DB->get_recordset_sql($grades_sql, $params);
244 } else {
245 $this->grades_rs = false;
248 return true;
252 * Returns information about the next user
253 * @return mixed array of user info, all grades and feedback or null when no more users found
255 public function next_user() {
256 if (!$this->users_rs) {
257 return false; // no users present
260 if (!$this->users_rs->valid()) {
261 if ($current = $this->_pop()) {
262 // this is not good - user or grades updated between the two reads above :-(
265 return false; // no more users
266 } else {
267 $user = $this->users_rs->current();
268 $this->users_rs->next();
271 // find grades of this user
272 $grade_records = array();
273 while (true) {
274 if (!$current = $this->_pop()) {
275 break; // no more grades
278 if (empty($current->userid)) {
279 break;
282 if ($current->userid != $user->id) {
283 // grade of the next user, we have all for this user
284 $this->_push($current);
285 break;
288 $grade_records[$current->itemid] = $current;
291 $grades = array();
292 $feedbacks = array();
294 if (!empty($this->grade_items)) {
295 foreach ($this->grade_items as $grade_item) {
296 if (!isset($feedbacks[$grade_item->id])) {
297 $feedbacks[$grade_item->id] = new stdClass();
299 if (array_key_exists($grade_item->id, $grade_records)) {
300 $feedbacks[$grade_item->id]->feedback = $grade_records[$grade_item->id]->feedback;
301 $feedbacks[$grade_item->id]->feedbackformat = $grade_records[$grade_item->id]->feedbackformat;
302 unset($grade_records[$grade_item->id]->feedback);
303 unset($grade_records[$grade_item->id]->feedbackformat);
304 $grades[$grade_item->id] = new grade_grade($grade_records[$grade_item->id], false);
305 } else {
306 $feedbacks[$grade_item->id]->feedback = '';
307 $feedbacks[$grade_item->id]->feedbackformat = FORMAT_MOODLE;
308 $grades[$grade_item->id] =
309 new grade_grade(array('userid'=>$user->id, 'itemid'=>$grade_item->id), false);
311 $grades[$grade_item->id]->grade_item = $grade_item;
315 // Set user suspended status.
316 $user->suspendedenrolment = isset($this->suspendedusers[$user->id]);
317 $result = new stdClass();
318 $result->user = $user;
319 $result->grades = $grades;
320 $result->feedbacks = $feedbacks;
321 return $result;
325 * Close the iterator, do not forget to call this function
327 public function close() {
328 if ($this->users_rs) {
329 $this->users_rs->close();
330 $this->users_rs = null;
332 if ($this->grades_rs) {
333 $this->grades_rs->close();
334 $this->grades_rs = null;
336 $this->gradestack = array();
340 * Should all enrolled users be exported or just those with an active enrolment?
342 * @param bool $onlyactive True to limit the export to users with an active enrolment
344 public function require_active_enrolment($onlyactive = true) {
345 if (!empty($this->users_rs)) {
346 debugging('Calling require_active_enrolment() has no effect unless you call init() again', DEBUG_DEVELOPER);
348 $this->onlyactive = $onlyactive;
352 * Allow custom fields to be included
354 * @param bool $allow Whether to allow custom fields or not
355 * @return void
357 public function allow_user_custom_fields($allow = true) {
358 if ($allow) {
359 $this->allowusercustomfields = true;
360 } else {
361 $this->allowusercustomfields = false;
366 * Add a grade_grade instance to the grade stack
368 * @param grade_grade $grade Grade object
370 * @return void
372 private function _push($grade) {
373 array_push($this->gradestack, $grade);
378 * Remove a grade_grade instance from the grade stack
380 * @return grade_grade current grade object
382 private function _pop() {
383 global $DB;
384 if (empty($this->gradestack)) {
385 if (empty($this->grades_rs) || !$this->grades_rs->valid()) {
386 return null; // no grades present
389 $current = $this->grades_rs->current();
391 $this->grades_rs->next();
393 return $current;
394 } else {
395 return array_pop($this->gradestack);
401 * Print a selection popup form of the graded users in a course.
403 * @deprecated since 2.0
405 * @param int $course id of the course
406 * @param string $actionpage The page receiving the data from the popoup form
407 * @param int $userid id of the currently selected user (or 'all' if they are all selected)
408 * @param int $groupid id of requested group, 0 means all
409 * @param int $includeall bool include all option
410 * @param bool $return If true, will return the HTML, otherwise, will print directly
411 * @return null
413 function print_graded_users_selector($course, $actionpage, $userid=0, $groupid=0, $includeall=true, $return=false) {
414 global $CFG, $USER, $OUTPUT;
415 return $OUTPUT->render(grade_get_graded_users_select(substr($actionpage, 0, strpos($actionpage, '/')), $course, $userid, $groupid, $includeall));
418 function grade_get_graded_users_select($report, $course, $userid, $groupid, $includeall) {
419 global $USER, $CFG;
421 if (is_null($userid)) {
422 $userid = $USER->id;
424 $coursecontext = context_course::instance($course->id);
425 $defaultgradeshowactiveenrol = !empty($CFG->grade_report_showonlyactiveenrol);
426 $showonlyactiveenrol = get_user_preferences('grade_report_showonlyactiveenrol', $defaultgradeshowactiveenrol);
427 $showonlyactiveenrol = $showonlyactiveenrol || !has_capability('moodle/course:viewsuspendedusers', $coursecontext);
428 $menu = array(); // Will be a list of userid => user name
429 $menususpendedusers = array(); // Suspended users go to a separate optgroup.
430 $gui = new graded_users_iterator($course, null, $groupid);
431 $gui->require_active_enrolment($showonlyactiveenrol);
432 $gui->init();
433 $label = get_string('selectauser', 'grades');
434 if ($includeall) {
435 $menu[0] = get_string('allusers', 'grades');
436 $label = get_string('selectalloroneuser', 'grades');
438 while ($userdata = $gui->next_user()) {
439 $user = $userdata->user;
440 $userfullname = fullname($user);
441 if ($user->suspendedenrolment) {
442 $menususpendedusers[$user->id] = $userfullname;
443 } else {
444 $menu[$user->id] = $userfullname;
447 $gui->close();
449 if ($includeall) {
450 $menu[0] .= " (" . (count($menu) + count($menususpendedusers) - 1) . ")";
453 if (!empty($menususpendedusers)) {
454 $menu[] = array(get_string('suspendedusers') => $menususpendedusers);
456 $select = new single_select(new moodle_url('/grade/report/'.$report.'/index.php', array('id'=>$course->id)), 'userid', $menu, $userid);
457 $select->label = $label;
458 $select->formid = 'choosegradeuser';
459 return $select;
463 * Hide warning about changed grades during upgrade to 2.8.
465 * @param int $courseid The current course id.
467 function hide_natural_aggregation_upgrade_notice($courseid) {
468 unset_config('show_sumofgrades_upgrade_' . $courseid);
472 * Hide warning about changed grades during upgrade from 2.8.0-2.8.6 and 2.9.0.
474 * @param int $courseid The current course id.
476 function grade_hide_min_max_grade_upgrade_notice($courseid) {
477 unset_config('show_min_max_grades_changed_' . $courseid);
481 * Use the grade min and max from the grade_grade.
483 * This is reserved for core use after an upgrade.
485 * @param int $courseid The current course id.
487 function grade_upgrade_use_min_max_from_grade_grade($courseid) {
488 grade_set_setting($courseid, 'minmaxtouse', GRADE_MIN_MAX_FROM_GRADE_GRADE);
490 grade_force_full_regrading($courseid);
491 // Do this now, because it probably happened to late in the page load to be happen automatically.
492 grade_regrade_final_grades($courseid);
496 * Use the grade min and max from the grade_item.
498 * This is reserved for core use after an upgrade.
500 * @param int $courseid The current course id.
502 function grade_upgrade_use_min_max_from_grade_item($courseid) {
503 grade_set_setting($courseid, 'minmaxtouse', GRADE_MIN_MAX_FROM_GRADE_ITEM);
505 grade_force_full_regrading($courseid);
506 // Do this now, because it probably happened to late in the page load to be happen automatically.
507 grade_regrade_final_grades($courseid);
511 * Hide warning about changed grades during upgrade to 2.8.
513 * @param int $courseid The current course id.
515 function hide_aggregatesubcats_upgrade_notice($courseid) {
516 unset_config('show_aggregatesubcats_upgrade_' . $courseid);
520 * Hide warning about changed grades due to bug fixes
522 * @param int $courseid The current course id.
524 function hide_gradebook_calculations_freeze_notice($courseid) {
525 unset_config('gradebook_calculations_freeze_' . $courseid);
529 * Print warning about changed grades during upgrade to 2.8.
531 * @param int $courseid The current course id.
532 * @param context $context The course context.
533 * @param string $thispage The relative path for the current page. E.g. /grade/report/user/index.php
534 * @param boolean $return return as string
536 * @return nothing or string if $return true
538 function print_natural_aggregation_upgrade_notice($courseid, $context, $thispage, $return=false) {
539 global $CFG, $OUTPUT;
540 $html = '';
542 // Do not do anything if they cannot manage the grades of this course.
543 if (!has_capability('moodle/grade:manage', $context)) {
544 return $html;
547 $hidesubcatswarning = optional_param('seenaggregatesubcatsupgradedgrades', false, PARAM_BOOL) && confirm_sesskey();
548 $showsubcatswarning = get_config('core', 'show_aggregatesubcats_upgrade_' . $courseid);
549 $hidenaturalwarning = optional_param('seensumofgradesupgradedgrades', false, PARAM_BOOL) && confirm_sesskey();
550 $shownaturalwarning = get_config('core', 'show_sumofgrades_upgrade_' . $courseid);
552 $hideminmaxwarning = optional_param('seenminmaxupgradedgrades', false, PARAM_BOOL) && confirm_sesskey();
553 $showminmaxwarning = get_config('core', 'show_min_max_grades_changed_' . $courseid);
555 $useminmaxfromgradeitem = optional_param('useminmaxfromgradeitem', false, PARAM_BOOL) && confirm_sesskey();
556 $useminmaxfromgradegrade = optional_param('useminmaxfromgradegrade', false, PARAM_BOOL) && confirm_sesskey();
558 $minmaxtouse = grade_get_setting($courseid, 'minmaxtouse', $CFG->grade_minmaxtouse);
560 $gradebookcalculationsfreeze = get_config('core', 'gradebook_calculations_freeze_' . $courseid);
561 $acceptgradebookchanges = optional_param('acceptgradebookchanges', false, PARAM_BOOL) && confirm_sesskey();
563 // Hide the warning if the user told it to go away.
564 if ($hidenaturalwarning) {
565 hide_natural_aggregation_upgrade_notice($courseid);
567 // Hide the warning if the user told it to go away.
568 if ($hidesubcatswarning) {
569 hide_aggregatesubcats_upgrade_notice($courseid);
572 // Hide the min/max warning if the user told it to go away.
573 if ($hideminmaxwarning) {
574 grade_hide_min_max_grade_upgrade_notice($courseid);
575 $showminmaxwarning = false;
578 if ($useminmaxfromgradegrade) {
579 // Revert to the new behaviour, we now use the grade_grade for min/max.
580 grade_upgrade_use_min_max_from_grade_grade($courseid);
581 grade_hide_min_max_grade_upgrade_notice($courseid);
582 $showminmaxwarning = false;
584 } else if ($useminmaxfromgradeitem) {
585 // Apply the new logic, we now use the grade_item for min/max.
586 grade_upgrade_use_min_max_from_grade_item($courseid);
587 grade_hide_min_max_grade_upgrade_notice($courseid);
588 $showminmaxwarning = false;
592 if (!$hidenaturalwarning && $shownaturalwarning) {
593 $message = get_string('sumofgradesupgradedgrades', 'grades');
594 $hidemessage = get_string('upgradedgradeshidemessage', 'grades');
595 $urlparams = array( 'id' => $courseid,
596 'seensumofgradesupgradedgrades' => true,
597 'sesskey' => sesskey());
598 $goawayurl = new moodle_url($thispage, $urlparams);
599 $goawaybutton = $OUTPUT->single_button($goawayurl, $hidemessage, 'get');
600 $html .= $OUTPUT->notification($message, 'notifysuccess');
601 $html .= $goawaybutton;
604 if (!$hidesubcatswarning && $showsubcatswarning) {
605 $message = get_string('aggregatesubcatsupgradedgrades', 'grades');
606 $hidemessage = get_string('upgradedgradeshidemessage', 'grades');
607 $urlparams = array( 'id' => $courseid,
608 'seenaggregatesubcatsupgradedgrades' => true,
609 'sesskey' => sesskey());
610 $goawayurl = new moodle_url($thispage, $urlparams);
611 $goawaybutton = $OUTPUT->single_button($goawayurl, $hidemessage, 'get');
612 $html .= $OUTPUT->notification($message, 'notifysuccess');
613 $html .= $goawaybutton;
616 if ($showminmaxwarning) {
617 $hidemessage = get_string('upgradedgradeshidemessage', 'grades');
618 $urlparams = array( 'id' => $courseid,
619 'seenminmaxupgradedgrades' => true,
620 'sesskey' => sesskey());
622 $goawayurl = new moodle_url($thispage, $urlparams);
623 $hideminmaxbutton = $OUTPUT->single_button($goawayurl, $hidemessage, 'get');
624 $moreinfo = html_writer::link(get_docs_url(get_string('minmaxtouse_link', 'grades')), get_string('moreinfo'),
625 array('target' => '_blank'));
627 if ($minmaxtouse == GRADE_MIN_MAX_FROM_GRADE_ITEM) {
628 // Show the message that there were min/max issues that have been resolved.
629 $message = get_string('minmaxupgradedgrades', 'grades') . ' ' . $moreinfo;
631 $revertmessage = get_string('upgradedminmaxrevertmessage', 'grades');
632 $urlparams = array('id' => $courseid,
633 'useminmaxfromgradegrade' => true,
634 'sesskey' => sesskey());
635 $reverturl = new moodle_url($thispage, $urlparams);
636 $revertbutton = $OUTPUT->single_button($reverturl, $revertmessage, 'get');
638 $html .= $OUTPUT->notification($message);
639 $html .= $revertbutton . $hideminmaxbutton;
641 } else if ($minmaxtouse == GRADE_MIN_MAX_FROM_GRADE_GRADE) {
642 // Show the warning that there are min/max issues that have not be resolved.
643 $message = get_string('minmaxupgradewarning', 'grades') . ' ' . $moreinfo;
645 $fixmessage = get_string('minmaxupgradefixbutton', 'grades');
646 $urlparams = array('id' => $courseid,
647 'useminmaxfromgradeitem' => true,
648 'sesskey' => sesskey());
649 $fixurl = new moodle_url($thispage, $urlparams);
650 $fixbutton = $OUTPUT->single_button($fixurl, $fixmessage, 'get');
652 $html .= $OUTPUT->notification($message);
653 $html .= $fixbutton . $hideminmaxbutton;
657 if ($gradebookcalculationsfreeze) {
658 if ($acceptgradebookchanges) {
659 // Accept potential changes in grades caused by extra credit bug MDL-49257.
660 hide_gradebook_calculations_freeze_notice($courseid);
661 $courseitem = grade_item::fetch_course_item($courseid);
662 $courseitem->force_regrading();
663 grade_regrade_final_grades($courseid);
665 $html .= $OUTPUT->notification(get_string('gradebookcalculationsuptodate', 'grades'), 'notifysuccess');
666 } else {
667 // Show the warning that there may be extra credit weights problems.
668 $a = new stdClass();
669 $a->gradebookversion = $gradebookcalculationsfreeze;
670 if (preg_match('/(\d{8,})/', $CFG->release, $matches)) {
671 $a->currentversion = $matches[1];
672 } else {
673 $a->currentversion = $CFG->release;
675 $a->url = get_docs_url('Gradebook_calculation_changes');
676 $message = get_string('gradebookcalculationswarning', 'grades', $a);
678 $fixmessage = get_string('gradebookcalculationsfixbutton', 'grades');
679 $urlparams = array('id' => $courseid,
680 'acceptgradebookchanges' => true,
681 'sesskey' => sesskey());
682 $fixurl = new moodle_url($thispage, $urlparams);
683 $fixbutton = $OUTPUT->single_button($fixurl, $fixmessage, 'get');
685 $html .= $OUTPUT->notification($message);
686 $html .= $fixbutton;
690 if (!empty($html)) {
691 $html = html_writer::tag('div', $html, array('class' => 'core_grades_notices'));
694 if ($return) {
695 return $html;
696 } else {
697 echo $html;
702 * Print grading plugin selection popup form.
704 * @param array $plugin_info An array of plugins containing information for the selector
705 * @param boolean $return return as string
707 * @return nothing or string if $return true
709 function print_grade_plugin_selector($plugin_info, $active_type, $active_plugin, $return=false) {
710 global $CFG, $OUTPUT, $PAGE;
712 $menu = array();
713 $count = 0;
714 $active = '';
716 foreach ($plugin_info as $plugin_type => $plugins) {
717 if ($plugin_type == 'strings') {
718 continue;
721 $first_plugin = reset($plugins);
723 $sectionname = $plugin_info['strings'][$plugin_type];
724 $section = array();
726 foreach ($plugins as $plugin) {
727 $link = $plugin->link->out(false);
728 $section[$link] = $plugin->string;
729 $count++;
730 if ($plugin_type === $active_type and $plugin->id === $active_plugin) {
731 $active = $link;
735 if ($section) {
736 $menu[] = array($sectionname=>$section);
740 // finally print/return the popup form
741 if ($count > 1) {
742 $select = new url_select($menu, $active, null, 'choosepluginreport');
743 $select->set_label(get_string('gradereport', 'grades'), array('class' => 'accesshide'));
744 if ($return) {
745 return $OUTPUT->render($select);
746 } else {
747 echo $OUTPUT->render($select);
749 } else {
750 // only one option - no plugin selector needed
751 return '';
756 * Print grading plugin selection tab-based navigation.
758 * @param string $active_type type of plugin on current page - import, export, report or edit
759 * @param string $active_plugin active plugin type - grader, user, cvs, ...
760 * @param array $plugin_info Array of plugins
761 * @param boolean $return return as string
763 * @return nothing or string if $return true
765 function grade_print_tabs($active_type, $active_plugin, $plugin_info, $return=false) {
766 global $CFG, $COURSE;
768 if (!isset($currenttab)) { //TODO: this is weird
769 $currenttab = '';
772 $tabs = array();
773 $top_row = array();
774 $bottom_row = array();
775 $inactive = array($active_plugin);
776 $activated = array($active_type);
778 $count = 0;
779 $active = '';
781 foreach ($plugin_info as $plugin_type => $plugins) {
782 if ($plugin_type == 'strings') {
783 continue;
786 // If $plugins is actually the definition of a child-less parent link:
787 if (!empty($plugins->id)) {
788 $string = $plugins->string;
789 if (!empty($plugin_info[$active_type]->parent)) {
790 $string = $plugin_info[$active_type]->parent->string;
793 $top_row[] = new tabobject($plugin_type, $plugins->link, $string);
794 continue;
797 $first_plugin = reset($plugins);
798 $url = $first_plugin->link;
800 if ($plugin_type == 'report') {
801 $url = $CFG->wwwroot.'/grade/report/index.php?id='.$COURSE->id;
804 $top_row[] = new tabobject($plugin_type, $url, $plugin_info['strings'][$plugin_type]);
806 if ($active_type == $plugin_type) {
807 foreach ($plugins as $plugin) {
808 $bottom_row[] = new tabobject($plugin->id, $plugin->link, $plugin->string);
809 if ($plugin->id == $active_plugin) {
810 $inactive = array($plugin->id);
816 // Do not display rows that contain only one item, they are not helpful.
817 if (count($top_row) > 1) {
818 $tabs[] = $top_row;
820 if (count($bottom_row) > 1) {
821 $tabs[] = $bottom_row;
823 if (empty($tabs)) {
824 return;
827 $rv = html_writer::div(print_tabs($tabs, $active_plugin, $inactive, $activated, true), 'grade-navigation');
829 if ($return) {
830 return $rv;
831 } else {
832 echo $rv;
837 * grade_get_plugin_info
839 * @param int $courseid The course id
840 * @param string $active_type type of plugin on current page - import, export, report or edit
841 * @param string $active_plugin active plugin type - grader, user, cvs, ...
843 * @return array
845 function grade_get_plugin_info($courseid, $active_type, $active_plugin) {
846 global $CFG, $SITE;
848 $context = context_course::instance($courseid);
850 $plugin_info = array();
851 $count = 0;
852 $active = '';
853 $url_prefix = $CFG->wwwroot . '/grade/';
855 // Language strings
856 $plugin_info['strings'] = grade_helper::get_plugin_strings();
858 if ($reports = grade_helper::get_plugins_reports($courseid)) {
859 $plugin_info['report'] = $reports;
862 if ($settings = grade_helper::get_info_manage_settings($courseid)) {
863 $plugin_info['settings'] = $settings;
866 if ($scale = grade_helper::get_info_scales($courseid)) {
867 $plugin_info['scale'] = array('view'=>$scale);
870 if ($outcomes = grade_helper::get_info_outcomes($courseid)) {
871 $plugin_info['outcome'] = $outcomes;
874 if ($letters = grade_helper::get_info_letters($courseid)) {
875 $plugin_info['letter'] = $letters;
878 if ($imports = grade_helper::get_plugins_import($courseid)) {
879 $plugin_info['import'] = $imports;
882 if ($exports = grade_helper::get_plugins_export($courseid)) {
883 $plugin_info['export'] = $exports;
886 foreach ($plugin_info as $plugin_type => $plugins) {
887 if (!empty($plugins->id) && $active_plugin == $plugins->id) {
888 $plugin_info['strings']['active_plugin_str'] = $plugins->string;
889 break;
891 foreach ($plugins as $plugin) {
892 if (is_a($plugin, 'grade_plugin_info')) {
893 if ($active_plugin == $plugin->id) {
894 $plugin_info['strings']['active_plugin_str'] = $plugin->string;
900 return $plugin_info;
904 * A simple class containing info about grade plugins.
905 * Can be subclassed for special rules
907 * @package core_grades
908 * @copyright 2009 Nicolas Connault
909 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
911 class grade_plugin_info {
913 * A unique id for this plugin
915 * @var mixed
917 public $id;
919 * A URL to access this plugin
921 * @var mixed
923 public $link;
925 * The name of this plugin
927 * @var mixed
929 public $string;
931 * Another grade_plugin_info object, parent of the current one
933 * @var mixed
935 public $parent;
938 * Constructor
940 * @param int $id A unique id for this plugin
941 * @param string $link A URL to access this plugin
942 * @param string $string The name of this plugin
943 * @param object $parent Another grade_plugin_info object, parent of the current one
945 * @return void
947 public function __construct($id, $link, $string, $parent=null) {
948 $this->id = $id;
949 $this->link = $link;
950 $this->string = $string;
951 $this->parent = $parent;
956 * Prints the page headers, breadcrumb trail, page heading, (optional) dropdown navigation menu and
957 * (optional) navigation tabs for any gradebook page. All gradebook pages MUST use these functions
958 * in favour of the usual print_header(), print_header_simple(), print_heading() etc.
959 * !IMPORTANT! Use of tabs.php file in gradebook pages is forbidden unless tabs are switched off at
960 * the site level for the gradebook ($CFG->grade_navmethod = GRADE_NAVMETHOD_DROPDOWN).
962 * @param int $courseid Course id
963 * @param string $active_type The type of the current page (report, settings,
964 * import, export, scales, outcomes, letters)
965 * @param string $active_plugin The plugin of the current page (grader, fullview etc...)
966 * @param string $heading The heading of the page. Tries to guess if none is given
967 * @param boolean $return Whether to return (true) or echo (false) the HTML generated by this function
968 * @param string $bodytags Additional attributes that will be added to the <body> tag
969 * @param string $buttons Additional buttons to display on the page
970 * @param boolean $shownavigation should the gradebook navigation drop down (or tabs) be shown?
971 * @param string $headerhelpidentifier The help string identifier if required.
972 * @param string $headerhelpcomponent The component for the help string.
973 * @param stdClass $user The user object for use with the user context header.
975 * @return string HTML code or nothing if $return == false
977 function print_grade_page_head($courseid, $active_type, $active_plugin=null,
978 $heading = false, $return=false,
979 $buttons=false, $shownavigation=true, $headerhelpidentifier = null, $headerhelpcomponent = null,
980 $user = null) {
981 global $CFG, $OUTPUT, $PAGE;
983 // Put a warning on all gradebook pages if the course has modules currently scheduled for background deletion.
984 require_once($CFG->dirroot . '/course/lib.php');
985 if (course_modules_pending_deletion($courseid)) {
986 \core\notification::add(get_string('gradesmoduledeletionpendingwarning', 'grades'),
987 \core\output\notification::NOTIFY_WARNING);
990 if ($active_type === 'preferences') {
991 // In Moodle 2.8 report preferences were moved under 'settings'. Allow backward compatibility for 3rd party grade reports.
992 $active_type = 'settings';
995 $plugin_info = grade_get_plugin_info($courseid, $active_type, $active_plugin);
997 // Determine the string of the active plugin
998 $stractive_plugin = ($active_plugin) ? $plugin_info['strings']['active_plugin_str'] : $heading;
999 $stractive_type = $plugin_info['strings'][$active_type];
1001 if (empty($plugin_info[$active_type]->id) || !empty($plugin_info[$active_type]->parent)) {
1002 $title = $PAGE->course->fullname.': ' . $stractive_type . ': ' . $stractive_plugin;
1003 } else {
1004 $title = $PAGE->course->fullname.': ' . $stractive_plugin;
1007 if ($active_type == 'report') {
1008 $PAGE->set_pagelayout('report');
1009 } else {
1010 $PAGE->set_pagelayout('admin');
1012 $PAGE->set_title(get_string('grades') . ': ' . $stractive_type);
1013 $PAGE->set_heading($title);
1014 if ($buttons instanceof single_button) {
1015 $buttons = $OUTPUT->render($buttons);
1017 $PAGE->set_button($buttons);
1018 if ($courseid != SITEID) {
1019 grade_extend_settings($plugin_info, $courseid);
1022 // Set the current report as active in the breadcrumbs.
1023 if ($active_plugin !== null && $reportnav = $PAGE->settingsnav->find($active_plugin, navigation_node::TYPE_SETTING)) {
1024 $reportnav->make_active();
1027 $returnval = $OUTPUT->header();
1029 if (!$return) {
1030 echo $returnval;
1033 // Guess heading if not given explicitly
1034 if (!$heading) {
1035 $heading = $stractive_plugin;
1038 if ($shownavigation) {
1039 $navselector = null;
1040 if ($courseid != SITEID &&
1041 ($CFG->grade_navmethod == GRADE_NAVMETHOD_COMBO || $CFG->grade_navmethod == GRADE_NAVMETHOD_DROPDOWN)) {
1042 // It's absolutely essential that this grade plugin selector is shown after the user header. Just ask Fred.
1043 $navselector = print_grade_plugin_selector($plugin_info, $active_type, $active_plugin, true);
1044 if ($return) {
1045 $returnval .= $navselector;
1046 } else if (!isset($user)) {
1047 echo $navselector;
1051 $output = '';
1052 // Add a help dialogue box if provided.
1053 if (isset($headerhelpidentifier)) {
1054 $output = $OUTPUT->heading_with_help($heading, $headerhelpidentifier, $headerhelpcomponent);
1055 } else {
1056 if (isset($user)) {
1057 $output = $OUTPUT->context_header(
1058 array(
1059 'heading' => html_writer::link(new moodle_url('/user/view.php', array('id' => $user->id,
1060 'course' => $courseid)), fullname($user)),
1061 'user' => $user,
1062 'usercontext' => context_user::instance($user->id)
1063 ), 2
1064 ) . $navselector;
1065 } else {
1066 $output = $OUTPUT->heading($heading);
1070 if ($return) {
1071 $returnval .= $output;
1072 } else {
1073 echo $output;
1076 if ($courseid != SITEID &&
1077 ($CFG->grade_navmethod == GRADE_NAVMETHOD_COMBO || $CFG->grade_navmethod == GRADE_NAVMETHOD_TABS)) {
1078 $returnval .= grade_print_tabs($active_type, $active_plugin, $plugin_info, $return);
1082 $returnval .= print_natural_aggregation_upgrade_notice($courseid,
1083 context_course::instance($courseid),
1084 $PAGE->url,
1085 $return);
1087 if ($return) {
1088 return $returnval;
1093 * Utility class used for return tracking when using edit and other forms in grade plugins
1095 * @package core_grades
1096 * @copyright 2009 Nicolas Connault
1097 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1099 class grade_plugin_return {
1100 public $type;
1101 public $plugin;
1102 public $courseid;
1103 public $userid;
1104 public $page;
1107 * Constructor
1109 * @param array $params - associative array with return parameters, if null parameter are taken from _GET or _POST
1111 public function __construct($params = null) {
1112 if (empty($params)) {
1113 $this->type = optional_param('gpr_type', null, PARAM_SAFEDIR);
1114 $this->plugin = optional_param('gpr_plugin', null, PARAM_PLUGIN);
1115 $this->courseid = optional_param('gpr_courseid', null, PARAM_INT);
1116 $this->userid = optional_param('gpr_userid', null, PARAM_INT);
1117 $this->page = optional_param('gpr_page', null, PARAM_INT);
1119 } else {
1120 foreach ($params as $key=>$value) {
1121 if (property_exists($this, $key)) {
1122 $this->$key = $value;
1129 * Old syntax of class constructor. Deprecated in PHP7.
1131 * @deprecated since Moodle 3.1
1133 public function grade_plugin_return($params = null) {
1134 debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER);
1135 self::__construct($params);
1139 * Returns return parameters as options array suitable for buttons.
1140 * @return array options
1142 public function get_options() {
1143 if (empty($this->type)) {
1144 return array();
1147 $params = array();
1149 if (!empty($this->plugin)) {
1150 $params['plugin'] = $this->plugin;
1153 if (!empty($this->courseid)) {
1154 $params['id'] = $this->courseid;
1157 if (!empty($this->userid)) {
1158 $params['userid'] = $this->userid;
1161 if (!empty($this->page)) {
1162 $params['page'] = $this->page;
1165 return $params;
1169 * Returns return url
1171 * @param string $default default url when params not set
1172 * @param array $extras Extra URL parameters
1174 * @return string url
1176 public function get_return_url($default, $extras=null) {
1177 global $CFG;
1179 if (empty($this->type) or empty($this->plugin)) {
1180 return $default;
1183 $url = $CFG->wwwroot.'/grade/'.$this->type.'/'.$this->plugin.'/index.php';
1184 $glue = '?';
1186 if (!empty($this->courseid)) {
1187 $url .= $glue.'id='.$this->courseid;
1188 $glue = '&amp;';
1191 if (!empty($this->userid)) {
1192 $url .= $glue.'userid='.$this->userid;
1193 $glue = '&amp;';
1196 if (!empty($this->page)) {
1197 $url .= $glue.'page='.$this->page;
1198 $glue = '&amp;';
1201 if (!empty($extras)) {
1202 foreach ($extras as $key=>$value) {
1203 $url .= $glue.$key.'='.$value;
1204 $glue = '&amp;';
1208 return $url;
1212 * Returns string with hidden return tracking form elements.
1213 * @return string
1215 public function get_form_fields() {
1216 if (empty($this->type)) {
1217 return '';
1220 $result = '<input type="hidden" name="gpr_type" value="'.$this->type.'" />';
1222 if (!empty($this->plugin)) {
1223 $result .= '<input type="hidden" name="gpr_plugin" value="'.$this->plugin.'" />';
1226 if (!empty($this->courseid)) {
1227 $result .= '<input type="hidden" name="gpr_courseid" value="'.$this->courseid.'" />';
1230 if (!empty($this->userid)) {
1231 $result .= '<input type="hidden" name="gpr_userid" value="'.$this->userid.'" />';
1234 if (!empty($this->page)) {
1235 $result .= '<input type="hidden" name="gpr_page" value="'.$this->page.'" />';
1240 * Add hidden elements into mform
1242 * @param object &$mform moodle form object
1244 * @return void
1246 public function add_mform_elements(&$mform) {
1247 if (empty($this->type)) {
1248 return;
1251 $mform->addElement('hidden', 'gpr_type', $this->type);
1252 $mform->setType('gpr_type', PARAM_SAFEDIR);
1254 if (!empty($this->plugin)) {
1255 $mform->addElement('hidden', 'gpr_plugin', $this->plugin);
1256 $mform->setType('gpr_plugin', PARAM_PLUGIN);
1259 if (!empty($this->courseid)) {
1260 $mform->addElement('hidden', 'gpr_courseid', $this->courseid);
1261 $mform->setType('gpr_courseid', PARAM_INT);
1264 if (!empty($this->userid)) {
1265 $mform->addElement('hidden', 'gpr_userid', $this->userid);
1266 $mform->setType('gpr_userid', PARAM_INT);
1269 if (!empty($this->page)) {
1270 $mform->addElement('hidden', 'gpr_page', $this->page);
1271 $mform->setType('gpr_page', PARAM_INT);
1276 * Add return tracking params into url
1278 * @param moodle_url $url A URL
1280 * @return string $url with return tracking params
1282 public function add_url_params(moodle_url $url) {
1283 if (empty($this->type)) {
1284 return $url;
1287 $url->param('gpr_type', $this->type);
1289 if (!empty($this->plugin)) {
1290 $url->param('gpr_plugin', $this->plugin);
1293 if (!empty($this->courseid)) {
1294 $url->param('gpr_courseid' ,$this->courseid);
1297 if (!empty($this->userid)) {
1298 $url->param('gpr_userid', $this->userid);
1301 if (!empty($this->page)) {
1302 $url->param('gpr_page', $this->page);
1305 return $url;
1310 * Function central to gradebook for building and printing the navigation (breadcrumb trail).
1312 * @param string $path The path of the calling script (using __FILE__?)
1313 * @param string $pagename The language string to use as the last part of the navigation (non-link)
1314 * @param mixed $id Either a plain integer (assuming the key is 'id') or
1315 * an array of keys and values (e.g courseid => $courseid, itemid...)
1317 * @return string
1319 function grade_build_nav($path, $pagename=null, $id=null) {
1320 global $CFG, $COURSE, $PAGE;
1322 $strgrades = get_string('grades', 'grades');
1324 // Parse the path and build navlinks from its elements
1325 $dirroot_length = strlen($CFG->dirroot) + 1; // Add 1 for the first slash
1326 $path = substr($path, $dirroot_length);
1327 $path = str_replace('\\', '/', $path);
1329 $path_elements = explode('/', $path);
1331 $path_elements_count = count($path_elements);
1333 // First link is always 'grade'
1334 $PAGE->navbar->add($strgrades, new moodle_url('/grade/index.php', array('id'=>$COURSE->id)));
1336 $link = null;
1337 $numberofelements = 3;
1339 // Prepare URL params string
1340 $linkparams = array();
1341 if (!is_null($id)) {
1342 if (is_array($id)) {
1343 foreach ($id as $idkey => $idvalue) {
1344 $linkparams[$idkey] = $idvalue;
1346 } else {
1347 $linkparams['id'] = $id;
1351 $navlink4 = null;
1353 // Remove file extensions from filenames
1354 foreach ($path_elements as $key => $filename) {
1355 $path_elements[$key] = str_replace('.php', '', $filename);
1358 // Second level links
1359 switch ($path_elements[1]) {
1360 case 'edit': // No link
1361 if ($path_elements[3] != 'index.php') {
1362 $numberofelements = 4;
1364 break;
1365 case 'import': // No link
1366 break;
1367 case 'export': // No link
1368 break;
1369 case 'report':
1370 // $id is required for this link. Do not print it if $id isn't given
1371 if (!is_null($id)) {
1372 $link = new moodle_url('/grade/report/index.php', $linkparams);
1375 if ($path_elements[2] == 'grader') {
1376 $numberofelements = 4;
1378 break;
1380 default:
1381 // If this element isn't among the ones already listed above, it isn't supported, throw an error.
1382 debugging("grade_build_nav() doesn't support ". $path_elements[1] .
1383 " as the second path element after 'grade'.");
1384 return false;
1386 $PAGE->navbar->add(get_string($path_elements[1], 'grades'), $link);
1388 // Third level links
1389 if (empty($pagename)) {
1390 $pagename = get_string($path_elements[2], 'grades');
1393 switch ($numberofelements) {
1394 case 3:
1395 $PAGE->navbar->add($pagename, $link);
1396 break;
1397 case 4:
1398 if ($path_elements[2] == 'grader' AND $path_elements[3] != 'index.php') {
1399 $PAGE->navbar->add(get_string('pluginname', 'gradereport_grader'), new moodle_url('/grade/report/grader/index.php', $linkparams));
1401 $PAGE->navbar->add($pagename);
1402 break;
1405 return '';
1409 * General structure representing grade items in course
1411 * @package core_grades
1412 * @copyright 2009 Nicolas Connault
1413 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1415 class grade_structure {
1416 public $context;
1418 public $courseid;
1421 * Reference to modinfo for current course (for performance, to save
1422 * retrieving it from courseid every time). Not actually set except for
1423 * the grade_tree type.
1424 * @var course_modinfo
1426 public $modinfo;
1429 * 1D array of grade items only
1431 public $items;
1434 * Returns icon of element
1436 * @param array &$element An array representing an element in the grade_tree
1437 * @param bool $spacerifnone return spacer if no icon found
1439 * @return string icon or spacer
1441 public function get_element_icon(&$element, $spacerifnone=false) {
1442 global $CFG, $OUTPUT;
1443 require_once $CFG->libdir.'/filelib.php';
1445 $outputstr = '';
1447 // Object holding pix_icon information before instantiation.
1448 $icon = new stdClass();
1449 $icon->attributes = array(
1450 'class' => 'icon itemicon'
1452 $icon->component = 'moodle';
1454 $none = true;
1455 switch ($element['type']) {
1456 case 'item':
1457 case 'courseitem':
1458 case 'categoryitem':
1459 $none = false;
1461 $is_course = $element['object']->is_course_item();
1462 $is_category = $element['object']->is_category_item();
1463 $is_scale = $element['object']->gradetype == GRADE_TYPE_SCALE;
1464 $is_value = $element['object']->gradetype == GRADE_TYPE_VALUE;
1465 $is_outcome = !empty($element['object']->outcomeid);
1467 if ($element['object']->is_calculated()) {
1468 $icon->pix = 'i/calc';
1469 $icon->title = s(get_string('calculatedgrade', 'grades'));
1471 } else if (($is_course or $is_category) and ($is_scale or $is_value)) {
1472 if ($category = $element['object']->get_item_category()) {
1473 $aggrstrings = grade_helper::get_aggregation_strings();
1474 $stragg = $aggrstrings[$category->aggregation];
1476 $icon->pix = 'i/calc';
1477 $icon->title = s($stragg);
1479 switch ($category->aggregation) {
1480 case GRADE_AGGREGATE_MEAN:
1481 case GRADE_AGGREGATE_MEDIAN:
1482 case GRADE_AGGREGATE_WEIGHTED_MEAN:
1483 case GRADE_AGGREGATE_WEIGHTED_MEAN2:
1484 case GRADE_AGGREGATE_EXTRACREDIT_MEAN:
1485 $icon->pix = 'i/agg_mean';
1486 break;
1487 case GRADE_AGGREGATE_SUM:
1488 $icon->pix = 'i/agg_sum';
1489 break;
1493 } else if ($element['object']->itemtype == 'mod') {
1494 // Prevent outcomes displaying the same icon as the activity they are attached to.
1495 if ($is_outcome) {
1496 $icon->pix = 'i/outcomes';
1497 $icon->title = s(get_string('outcome', 'grades'));
1498 } else {
1499 $modinfo = get_fast_modinfo($element['object']->courseid);
1500 $module = $element['object']->itemmodule;
1501 $instanceid = $element['object']->iteminstance;
1502 if (isset($modinfo->instances[$module][$instanceid])) {
1503 $icon->url = $modinfo->instances[$module][$instanceid]->get_icon_url();
1504 } else {
1505 $icon->pix = 'icon';
1506 $icon->component = $element['object']->itemmodule;
1508 $icon->title = s(get_string('modulename', $element['object']->itemmodule));
1510 } else if ($element['object']->itemtype == 'manual') {
1511 if ($element['object']->is_outcome_item()) {
1512 $icon->pix = 'i/outcomes';
1513 $icon->title = s(get_string('outcome', 'grades'));
1514 } else {
1515 $icon->pix = 'i/manual_item';
1516 $icon->title = s(get_string('manualitem', 'grades'));
1519 break;
1521 case 'category':
1522 $none = false;
1523 $icon->pix = 'i/folder';
1524 $icon->title = s(get_string('category', 'grades'));
1525 break;
1528 if ($none) {
1529 if ($spacerifnone) {
1530 $outputstr = $OUTPUT->spacer() . ' ';
1532 } else if (isset($icon->url)) {
1533 $outputstr = html_writer::img($icon->url, $icon->title, $icon->attributes);
1534 } else {
1535 $outputstr = $OUTPUT->pix_icon($icon->pix, $icon->title, $icon->component, $icon->attributes);
1538 return $outputstr;
1542 * Returns name of element optionally with icon and link
1544 * @param array &$element An array representing an element in the grade_tree
1545 * @param bool $withlink Whether or not this header has a link
1546 * @param bool $icon Whether or not to display an icon with this header
1547 * @param bool $spacerifnone return spacer if no icon found
1548 * @param bool $withdescription Show description if defined by this item.
1549 * @param bool $fulltotal If the item is a category total, returns $categoryname."total"
1550 * instead of "Category total" or "Course total"
1552 * @return string header
1554 public function get_element_header(&$element, $withlink = false, $icon = true, $spacerifnone = false,
1555 $withdescription = false, $fulltotal = false) {
1556 $header = '';
1558 if ($icon) {
1559 $header .= $this->get_element_icon($element, $spacerifnone);
1562 $title = $element['object']->get_name($fulltotal);
1563 $header .= $title;
1565 if ($element['type'] != 'item' and $element['type'] != 'categoryitem' and
1566 $element['type'] != 'courseitem') {
1567 return $header;
1570 if ($withlink && $url = $this->get_activity_link($element)) {
1571 $a = new stdClass();
1572 $a->name = get_string('modulename', $element['object']->itemmodule);
1573 $a->title = $title;
1574 $title = get_string('linktoactivity', 'grades', $a);
1576 $header = html_writer::link($url, $header, array('title' => $title, 'class' => 'gradeitemheader'));
1577 } else {
1578 $header = html_writer::span($header, 'gradeitemheader', array('title' => $title, 'tabindex' => '0'));
1581 if ($withdescription) {
1582 $desc = $element['object']->get_description();
1583 if (!empty($desc)) {
1584 $header .= '<div class="gradeitemdescription">' . s($desc) . '</div><div class="gradeitemdescriptionfiller"></div>';
1588 return $header;
1591 private function get_activity_link($element) {
1592 global $CFG;
1593 /** @var array static cache of the grade.php file existence flags */
1594 static $hasgradephp = array();
1596 $itemtype = $element['object']->itemtype;
1597 $itemmodule = $element['object']->itemmodule;
1598 $iteminstance = $element['object']->iteminstance;
1599 $itemnumber = $element['object']->itemnumber;
1601 // Links only for module items that have valid instance, module and are
1602 // called from grade_tree with valid modinfo
1603 if ($itemtype != 'mod' || !$iteminstance || !$itemmodule || !$this->modinfo) {
1604 return null;
1607 // Get $cm efficiently and with visibility information using modinfo
1608 $instances = $this->modinfo->get_instances();
1609 if (empty($instances[$itemmodule][$iteminstance])) {
1610 return null;
1612 $cm = $instances[$itemmodule][$iteminstance];
1614 // Do not add link if activity is not visible to the current user
1615 if (!$cm->uservisible) {
1616 return null;
1619 if (!array_key_exists($itemmodule, $hasgradephp)) {
1620 if (file_exists($CFG->dirroot . '/mod/' . $itemmodule . '/grade.php')) {
1621 $hasgradephp[$itemmodule] = true;
1622 } else {
1623 $hasgradephp[$itemmodule] = false;
1627 // If module has grade.php, link to that, otherwise view.php
1628 if ($hasgradephp[$itemmodule]) {
1629 $args = array('id' => $cm->id, 'itemnumber' => $itemnumber);
1630 if (isset($element['userid'])) {
1631 $args['userid'] = $element['userid'];
1633 return new moodle_url('/mod/' . $itemmodule . '/grade.php', $args);
1634 } else {
1635 return new moodle_url('/mod/' . $itemmodule . '/view.php', array('id' => $cm->id));
1640 * Returns URL of a page that is supposed to contain detailed grade analysis
1642 * At the moment, only activity modules are supported. The method generates link
1643 * to the module's file grade.php with the parameters id (cmid), itemid, itemnumber,
1644 * gradeid and userid. If the grade.php does not exist, null is returned.
1646 * @return moodle_url|null URL or null if unable to construct it
1648 public function get_grade_analysis_url(grade_grade $grade) {
1649 global $CFG;
1650 /** @var array static cache of the grade.php file existence flags */
1651 static $hasgradephp = array();
1653 if (empty($grade->grade_item) or !($grade->grade_item instanceof grade_item)) {
1654 throw new coding_exception('Passed grade without the associated grade item');
1656 $item = $grade->grade_item;
1658 if (!$item->is_external_item()) {
1659 // at the moment, only activity modules are supported
1660 return null;
1662 if ($item->itemtype !== 'mod') {
1663 throw new coding_exception('Unknown external itemtype: '.$item->itemtype);
1665 if (empty($item->iteminstance) or empty($item->itemmodule) or empty($this->modinfo)) {
1666 return null;
1669 if (!array_key_exists($item->itemmodule, $hasgradephp)) {
1670 if (file_exists($CFG->dirroot . '/mod/' . $item->itemmodule . '/grade.php')) {
1671 $hasgradephp[$item->itemmodule] = true;
1672 } else {
1673 $hasgradephp[$item->itemmodule] = false;
1677 if (!$hasgradephp[$item->itemmodule]) {
1678 return null;
1681 $instances = $this->modinfo->get_instances();
1682 if (empty($instances[$item->itemmodule][$item->iteminstance])) {
1683 return null;
1685 $cm = $instances[$item->itemmodule][$item->iteminstance];
1686 if (!$cm->uservisible) {
1687 return null;
1690 $url = new moodle_url('/mod/'.$item->itemmodule.'/grade.php', array(
1691 'id' => $cm->id,
1692 'itemid' => $item->id,
1693 'itemnumber' => $item->itemnumber,
1694 'gradeid' => $grade->id,
1695 'userid' => $grade->userid,
1698 return $url;
1702 * Returns an action icon leading to the grade analysis page
1704 * @param grade_grade $grade
1705 * @return string
1707 public function get_grade_analysis_icon(grade_grade $grade) {
1708 global $OUTPUT;
1710 $url = $this->get_grade_analysis_url($grade);
1711 if (is_null($url)) {
1712 return '';
1715 return $OUTPUT->action_icon($url, new pix_icon('t/preview',
1716 get_string('gradeanalysis', 'core_grades')));
1720 * Returns the grade eid - the grade may not exist yet.
1722 * @param grade_grade $grade_grade A grade_grade object
1724 * @return string eid
1726 public function get_grade_eid($grade_grade) {
1727 if (empty($grade_grade->id)) {
1728 return 'n'.$grade_grade->itemid.'u'.$grade_grade->userid;
1729 } else {
1730 return 'g'.$grade_grade->id;
1735 * Returns the grade_item eid
1736 * @param grade_item $grade_item A grade_item object
1737 * @return string eid
1739 public function get_item_eid($grade_item) {
1740 return 'ig'.$grade_item->id;
1744 * Given a grade_tree element, returns an array of parameters
1745 * used to build an icon for that element.
1747 * @param array $element An array representing an element in the grade_tree
1749 * @return array
1751 public function get_params_for_iconstr($element) {
1752 $strparams = new stdClass();
1753 $strparams->category = '';
1754 $strparams->itemname = '';
1755 $strparams->itemmodule = '';
1757 if (!method_exists($element['object'], 'get_name')) {
1758 return $strparams;
1761 $strparams->itemname = html_to_text($element['object']->get_name());
1763 // If element name is categorytotal, get the name of the parent category
1764 if ($strparams->itemname == get_string('categorytotal', 'grades')) {
1765 $parent = $element['object']->get_parent_category();
1766 $strparams->category = $parent->get_name() . ' ';
1767 } else {
1768 $strparams->category = '';
1771 $strparams->itemmodule = null;
1772 if (isset($element['object']->itemmodule)) {
1773 $strparams->itemmodule = $element['object']->itemmodule;
1775 return $strparams;
1779 * Return a reset icon for the given element.
1781 * @param array $element An array representing an element in the grade_tree
1782 * @param object $gpr A grade_plugin_return object
1783 * @param bool $returnactionmenulink return the instance of action_menu_link instead of string
1784 * @return string|action_menu_link
1786 public function get_reset_icon($element, $gpr, $returnactionmenulink = false) {
1787 global $CFG, $OUTPUT;
1789 // Limit to category items set to use the natural weights aggregation method, and users
1790 // with the capability to manage grades.
1791 if ($element['type'] != 'category' || $element['object']->aggregation != GRADE_AGGREGATE_SUM ||
1792 !has_capability('moodle/grade:manage', $this->context)) {
1793 return $returnactionmenulink ? null : '';
1796 $str = get_string('resetweights', 'grades', $this->get_params_for_iconstr($element));
1797 $url = new moodle_url('/grade/edit/tree/action.php', array(
1798 'id' => $this->courseid,
1799 'action' => 'resetweights',
1800 'eid' => $element['eid'],
1801 'sesskey' => sesskey(),
1804 if ($returnactionmenulink) {
1805 return new action_menu_link_secondary($gpr->add_url_params($url), new pix_icon('t/reset', $str),
1806 get_string('resetweightsshort', 'grades'));
1807 } else {
1808 return $OUTPUT->action_icon($gpr->add_url_params($url), new pix_icon('t/reset', $str));
1813 * Return edit icon for give element
1815 * @param array $element An array representing an element in the grade_tree
1816 * @param object $gpr A grade_plugin_return object
1817 * @param bool $returnactionmenulink return the instance of action_menu_link instead of string
1818 * @return string|action_menu_link
1820 public function get_edit_icon($element, $gpr, $returnactionmenulink = false) {
1821 global $CFG, $OUTPUT;
1823 if (!has_capability('moodle/grade:manage', $this->context)) {
1824 if ($element['type'] == 'grade' and has_capability('moodle/grade:edit', $this->context)) {
1825 // oki - let them override grade
1826 } else {
1827 return $returnactionmenulink ? null : '';
1831 static $strfeedback = null;
1832 static $streditgrade = null;
1833 if (is_null($streditgrade)) {
1834 $streditgrade = get_string('editgrade', 'grades');
1835 $strfeedback = get_string('feedback');
1838 $strparams = $this->get_params_for_iconstr($element);
1840 $object = $element['object'];
1842 switch ($element['type']) {
1843 case 'item':
1844 case 'categoryitem':
1845 case 'courseitem':
1846 $stredit = get_string('editverbose', 'grades', $strparams);
1847 if (empty($object->outcomeid) || empty($CFG->enableoutcomes)) {
1848 $url = new moodle_url('/grade/edit/tree/item.php',
1849 array('courseid' => $this->courseid, 'id' => $object->id));
1850 } else {
1851 $url = new moodle_url('/grade/edit/tree/outcomeitem.php',
1852 array('courseid' => $this->courseid, 'id' => $object->id));
1854 break;
1856 case 'category':
1857 $stredit = get_string('editverbose', 'grades', $strparams);
1858 $url = new moodle_url('/grade/edit/tree/category.php',
1859 array('courseid' => $this->courseid, 'id' => $object->id));
1860 break;
1862 case 'grade':
1863 $stredit = $streditgrade;
1864 if (empty($object->id)) {
1865 $url = new moodle_url('/grade/edit/tree/grade.php',
1866 array('courseid' => $this->courseid, 'itemid' => $object->itemid, 'userid' => $object->userid));
1867 } else {
1868 $url = new moodle_url('/grade/edit/tree/grade.php',
1869 array('courseid' => $this->courseid, 'id' => $object->id));
1871 if (!empty($object->feedback)) {
1872 $feedback = addslashes_js(trim(format_string($object->feedback, $object->feedbackformat)));
1874 break;
1876 default:
1877 $url = null;
1880 if ($url) {
1881 if ($returnactionmenulink) {
1882 return new action_menu_link_secondary($gpr->add_url_params($url),
1883 new pix_icon('t/edit', $stredit),
1884 get_string('editsettings'));
1885 } else {
1886 return $OUTPUT->action_icon($gpr->add_url_params($url), new pix_icon('t/edit', $stredit));
1889 } else {
1890 return $returnactionmenulink ? null : '';
1895 * Return hiding icon for give element
1897 * @param array $element An array representing an element in the grade_tree
1898 * @param object $gpr A grade_plugin_return object
1899 * @param bool $returnactionmenulink return the instance of action_menu_link instead of string
1900 * @return string|action_menu_link
1902 public function get_hiding_icon($element, $gpr, $returnactionmenulink = false) {
1903 global $CFG, $OUTPUT;
1905 if (!$element['object']->can_control_visibility()) {
1906 return $returnactionmenulink ? null : '';
1909 if (!has_capability('moodle/grade:manage', $this->context) and
1910 !has_capability('moodle/grade:hide', $this->context)) {
1911 return $returnactionmenulink ? null : '';
1914 $strparams = $this->get_params_for_iconstr($element);
1915 $strshow = get_string('showverbose', 'grades', $strparams);
1916 $strhide = get_string('hideverbose', 'grades', $strparams);
1918 $url = new moodle_url('/grade/edit/tree/action.php', array('id' => $this->courseid, 'sesskey' => sesskey(), 'eid' => $element['eid']));
1919 $url = $gpr->add_url_params($url);
1921 if ($element['object']->is_hidden()) {
1922 $type = 'show';
1923 $tooltip = $strshow;
1925 // Change the icon and add a tooltip showing the date
1926 if ($element['type'] != 'category' and $element['object']->get_hidden() > 1) {
1927 $type = 'hiddenuntil';
1928 $tooltip = get_string('hiddenuntildate', 'grades',
1929 userdate($element['object']->get_hidden()));
1932 $url->param('action', 'show');
1934 if ($returnactionmenulink) {
1935 $hideicon = new action_menu_link_secondary($url, new pix_icon('t/'.$type, $tooltip), get_string('show'));
1936 } else {
1937 $hideicon = $OUTPUT->action_icon($url, new pix_icon('t/'.$type, $tooltip, 'moodle', array('alt'=>$strshow, 'class'=>'smallicon')));
1940 } else {
1941 $url->param('action', 'hide');
1942 if ($returnactionmenulink) {
1943 $hideicon = new action_menu_link_secondary($url, new pix_icon('t/hide', $strhide), get_string('hide'));
1944 } else {
1945 $hideicon = $OUTPUT->action_icon($url, new pix_icon('t/hide', $strhide));
1949 return $hideicon;
1953 * Return locking icon for given element
1955 * @param array $element An array representing an element in the grade_tree
1956 * @param object $gpr A grade_plugin_return object
1958 * @return string
1960 public function get_locking_icon($element, $gpr) {
1961 global $CFG, $OUTPUT;
1963 $strparams = $this->get_params_for_iconstr($element);
1964 $strunlock = get_string('unlockverbose', 'grades', $strparams);
1965 $strlock = get_string('lockverbose', 'grades', $strparams);
1967 $url = new moodle_url('/grade/edit/tree/action.php', array('id' => $this->courseid, 'sesskey' => sesskey(), 'eid' => $element['eid']));
1968 $url = $gpr->add_url_params($url);
1970 // Don't allow an unlocking action for a grade whose grade item is locked: just print a state icon
1971 if ($element['type'] == 'grade' && $element['object']->grade_item->is_locked()) {
1972 $strparamobj = new stdClass();
1973 $strparamobj->itemname = $element['object']->grade_item->itemname;
1974 $strnonunlockable = get_string('nonunlockableverbose', 'grades', $strparamobj);
1976 $action = html_writer::tag('span', $OUTPUT->pix_icon('t/locked', $strnonunlockable),
1977 array('class' => 'action-icon'));
1979 } else if ($element['object']->is_locked()) {
1980 $type = 'unlock';
1981 $tooltip = $strunlock;
1983 // Change the icon and add a tooltip showing the date
1984 if ($element['type'] != 'category' and $element['object']->get_locktime() > 1) {
1985 $type = 'locktime';
1986 $tooltip = get_string('locktimedate', 'grades',
1987 userdate($element['object']->get_locktime()));
1990 if (!has_capability('moodle/grade:manage', $this->context) and !has_capability('moodle/grade:unlock', $this->context)) {
1991 $action = '';
1992 } else {
1993 $url->param('action', 'unlock');
1994 $action = $OUTPUT->action_icon($url, new pix_icon('t/'.$type, $tooltip, 'moodle', array('alt'=>$strunlock, 'class'=>'smallicon')));
1997 } else {
1998 if (!has_capability('moodle/grade:manage', $this->context) and !has_capability('moodle/grade:lock', $this->context)) {
1999 $action = '';
2000 } else {
2001 $url->param('action', 'lock');
2002 $action = $OUTPUT->action_icon($url, new pix_icon('t/lock', $strlock));
2006 return $action;
2010 * Return calculation icon for given element
2012 * @param array $element An array representing an element in the grade_tree
2013 * @param object $gpr A grade_plugin_return object
2014 * @param bool $returnactionmenulink return the instance of action_menu_link instead of string
2015 * @return string|action_menu_link
2017 public function get_calculation_icon($element, $gpr, $returnactionmenulink = false) {
2018 global $CFG, $OUTPUT;
2019 if (!has_capability('moodle/grade:manage', $this->context)) {
2020 return $returnactionmenulink ? null : '';
2023 $type = $element['type'];
2024 $object = $element['object'];
2026 if ($type == 'item' or $type == 'courseitem' or $type == 'categoryitem') {
2027 $strparams = $this->get_params_for_iconstr($element);
2028 $streditcalculation = get_string('editcalculationverbose', 'grades', $strparams);
2030 $is_scale = $object->gradetype == GRADE_TYPE_SCALE;
2031 $is_value = $object->gradetype == GRADE_TYPE_VALUE;
2033 // show calculation icon only when calculation possible
2034 if (!$object->is_external_item() and ($is_scale or $is_value)) {
2035 if ($object->is_calculated()) {
2036 $icon = 't/calc';
2037 } else {
2038 $icon = 't/calc_off';
2041 $url = new moodle_url('/grade/edit/tree/calculation.php', array('courseid' => $this->courseid, 'id' => $object->id));
2042 $url = $gpr->add_url_params($url);
2043 if ($returnactionmenulink) {
2044 return new action_menu_link_secondary($url,
2045 new pix_icon($icon, $streditcalculation),
2046 get_string('editcalculation', 'grades'));
2047 } else {
2048 return $OUTPUT->action_icon($url, new pix_icon($icon, $streditcalculation));
2053 return $returnactionmenulink ? null : '';
2058 * Flat structure similar to grade tree.
2060 * @uses grade_structure
2061 * @package core_grades
2062 * @copyright 2009 Nicolas Connault
2063 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2065 class grade_seq extends grade_structure {
2068 * 1D array of elements
2070 public $elements;
2073 * Constructor, retrieves and stores array of all grade_category and grade_item
2074 * objects for the given courseid. Full objects are instantiated. Ordering sequence is fixed if needed.
2076 * @param int $courseid The course id
2077 * @param bool $category_grade_last category grade item is the last child
2078 * @param bool $nooutcomes Whether or not outcomes should be included
2080 public function __construct($courseid, $category_grade_last=false, $nooutcomes=false) {
2081 global $USER, $CFG;
2083 $this->courseid = $courseid;
2084 $this->context = context_course::instance($courseid);
2086 // get course grade tree
2087 $top_element = grade_category::fetch_course_tree($courseid, true);
2089 $this->elements = grade_seq::flatten($top_element, $category_grade_last, $nooutcomes);
2091 foreach ($this->elements as $key=>$unused) {
2092 $this->items[$this->elements[$key]['object']->id] =& $this->elements[$key]['object'];
2097 * Old syntax of class constructor. Deprecated in PHP7.
2099 * @deprecated since Moodle 3.1
2101 public function grade_seq($courseid, $category_grade_last=false, $nooutcomes=false) {
2102 debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER);
2103 self::__construct($courseid, $category_grade_last, $nooutcomes);
2107 * Static recursive helper - makes the grade_item for category the last children
2109 * @param array &$element The seed of the recursion
2110 * @param bool $category_grade_last category grade item is the last child
2111 * @param bool $nooutcomes Whether or not outcomes should be included
2113 * @return array
2115 public function flatten(&$element, $category_grade_last, $nooutcomes) {
2116 if (empty($element['children'])) {
2117 return array();
2119 $children = array();
2121 foreach ($element['children'] as $sortorder=>$unused) {
2122 if ($nooutcomes and $element['type'] != 'category' and
2123 $element['children'][$sortorder]['object']->is_outcome_item()) {
2124 continue;
2126 $children[] = $element['children'][$sortorder];
2128 unset($element['children']);
2130 if ($category_grade_last and count($children) > 1 and
2132 $children[0]['type'] === 'courseitem' or
2133 $children[0]['type'] === 'categoryitem'
2136 $cat_item = array_shift($children);
2137 array_push($children, $cat_item);
2140 $result = array();
2141 foreach ($children as $child) {
2142 if ($child['type'] == 'category') {
2143 $result = $result + grade_seq::flatten($child, $category_grade_last, $nooutcomes);
2144 } else {
2145 $child['eid'] = 'i'.$child['object']->id;
2146 $result[$child['object']->id] = $child;
2150 return $result;
2154 * Parses the array in search of a given eid and returns a element object with
2155 * information about the element it has found.
2157 * @param int $eid Gradetree Element ID
2159 * @return object element
2161 public function locate_element($eid) {
2162 // it is a grade - construct a new object
2163 if (strpos($eid, 'n') === 0) {
2164 if (!preg_match('/n(\d+)u(\d+)/', $eid, $matches)) {
2165 return null;
2168 $itemid = $matches[1];
2169 $userid = $matches[2];
2171 //extra security check - the grade item must be in this tree
2172 if (!$item_el = $this->locate_element('ig'.$itemid)) {
2173 return null;
2176 // $gradea->id may be null - means does not exist yet
2177 $grade = new grade_grade(array('itemid'=>$itemid, 'userid'=>$userid));
2179 $grade->grade_item =& $item_el['object']; // this may speedup grade_grade methods!
2180 return array('eid'=>'n'.$itemid.'u'.$userid,'object'=>$grade, 'type'=>'grade');
2182 } else if (strpos($eid, 'g') === 0) {
2183 $id = (int) substr($eid, 1);
2184 if (!$grade = grade_grade::fetch(array('id'=>$id))) {
2185 return null;
2187 //extra security check - the grade item must be in this tree
2188 if (!$item_el = $this->locate_element('ig'.$grade->itemid)) {
2189 return null;
2191 $grade->grade_item =& $item_el['object']; // this may speedup grade_grade methods!
2192 return array('eid'=>'g'.$id,'object'=>$grade, 'type'=>'grade');
2195 // it is a category or item
2196 foreach ($this->elements as $element) {
2197 if ($element['eid'] == $eid) {
2198 return $element;
2202 return null;
2207 * This class represents a complete tree of categories, grade_items and final grades,
2208 * organises as an array primarily, but which can also be converted to other formats.
2209 * It has simple method calls with complex implementations, allowing for easy insertion,
2210 * deletion and moving of items and categories within the tree.
2212 * @uses grade_structure
2213 * @package core_grades
2214 * @copyright 2009 Nicolas Connault
2215 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2217 class grade_tree extends grade_structure {
2220 * The basic representation of the tree as a hierarchical, 3-tiered array.
2221 * @var object $top_element
2223 public $top_element;
2226 * 2D array of grade items and categories
2227 * @var array $levels
2229 public $levels;
2232 * Grade items
2233 * @var array $items
2235 public $items;
2238 * Constructor, retrieves and stores a hierarchical array of all grade_category and grade_item
2239 * objects for the given courseid. Full objects are instantiated. Ordering sequence is fixed if needed.
2241 * @param int $courseid The Course ID
2242 * @param bool $fillers include fillers and colspans, make the levels var "rectangular"
2243 * @param bool $category_grade_last category grade item is the last child
2244 * @param array $collapsed array of collapsed categories
2245 * @param bool $nooutcomes Whether or not outcomes should be included
2247 public function __construct($courseid, $fillers=true, $category_grade_last=false,
2248 $collapsed=null, $nooutcomes=false) {
2249 global $USER, $CFG, $COURSE, $DB;
2251 $this->courseid = $courseid;
2252 $this->levels = array();
2253 $this->context = context_course::instance($courseid);
2255 if (!empty($COURSE->id) && $COURSE->id == $this->courseid) {
2256 $course = $COURSE;
2257 } else {
2258 $course = $DB->get_record('course', array('id' => $this->courseid));
2260 $this->modinfo = get_fast_modinfo($course);
2262 // get course grade tree
2263 $this->top_element = grade_category::fetch_course_tree($courseid, true);
2265 // collapse the categories if requested
2266 if (!empty($collapsed)) {
2267 grade_tree::category_collapse($this->top_element, $collapsed);
2270 // no otucomes if requested
2271 if (!empty($nooutcomes)) {
2272 grade_tree::no_outcomes($this->top_element);
2275 // move category item to last position in category
2276 if ($category_grade_last) {
2277 grade_tree::category_grade_last($this->top_element);
2280 if ($fillers) {
2281 // inject fake categories == fillers
2282 grade_tree::inject_fillers($this->top_element, 0);
2283 // add colspans to categories and fillers
2284 grade_tree::inject_colspans($this->top_element);
2287 grade_tree::fill_levels($this->levels, $this->top_element, 0);
2292 * Old syntax of class constructor. Deprecated in PHP7.
2294 * @deprecated since Moodle 3.1
2296 public function grade_tree($courseid, $fillers=true, $category_grade_last=false,
2297 $collapsed=null, $nooutcomes=false) {
2298 debugging('Use of class name as constructor is deprecated', DEBUG_DEVELOPER);
2299 self::__construct($courseid, $fillers, $category_grade_last, $collapsed, $nooutcomes);
2303 * Static recursive helper - removes items from collapsed categories
2305 * @param array &$element The seed of the recursion
2306 * @param array $collapsed array of collapsed categories
2308 * @return void
2310 public function category_collapse(&$element, $collapsed) {
2311 if ($element['type'] != 'category') {
2312 return;
2314 if (empty($element['children']) or count($element['children']) < 2) {
2315 return;
2318 if (in_array($element['object']->id, $collapsed['aggregatesonly'])) {
2319 $category_item = reset($element['children']); //keep only category item
2320 $element['children'] = array(key($element['children'])=>$category_item);
2322 } else {
2323 if (in_array($element['object']->id, $collapsed['gradesonly'])) { // Remove category item
2324 reset($element['children']);
2325 $first_key = key($element['children']);
2326 unset($element['children'][$first_key]);
2328 foreach ($element['children'] as $sortorder=>$child) { // Recurse through the element's children
2329 grade_tree::category_collapse($element['children'][$sortorder], $collapsed);
2335 * Static recursive helper - removes all outcomes
2337 * @param array &$element The seed of the recursion
2339 * @return void
2341 public function no_outcomes(&$element) {
2342 if ($element['type'] != 'category') {
2343 return;
2345 foreach ($element['children'] as $sortorder=>$child) {
2346 if ($element['children'][$sortorder]['type'] == 'item'
2347 and $element['children'][$sortorder]['object']->is_outcome_item()) {
2348 unset($element['children'][$sortorder]);
2350 } else if ($element['children'][$sortorder]['type'] == 'category') {
2351 grade_tree::no_outcomes($element['children'][$sortorder]);
2357 * Static recursive helper - makes the grade_item for category the last children
2359 * @param array &$element The seed of the recursion
2361 * @return void
2363 public function category_grade_last(&$element) {
2364 if (empty($element['children'])) {
2365 return;
2367 if (count($element['children']) < 2) {
2368 return;
2370 $first_item = reset($element['children']);
2371 if ($first_item['type'] == 'categoryitem' or $first_item['type'] == 'courseitem') {
2372 // the category item might have been already removed
2373 $order = key($element['children']);
2374 unset($element['children'][$order]);
2375 $element['children'][$order] =& $first_item;
2377 foreach ($element['children'] as $sortorder => $child) {
2378 grade_tree::category_grade_last($element['children'][$sortorder]);
2383 * Static recursive helper - fills the levels array, useful when accessing tree elements of one level
2385 * @param array &$levels The levels of the grade tree through which to recurse
2386 * @param array &$element The seed of the recursion
2387 * @param int $depth How deep are we?
2388 * @return void
2390 public function fill_levels(&$levels, &$element, $depth) {
2391 if (!array_key_exists($depth, $levels)) {
2392 $levels[$depth] = array();
2395 // prepare unique identifier
2396 if ($element['type'] == 'category') {
2397 $element['eid'] = 'cg'.$element['object']->id;
2398 } else if (in_array($element['type'], array('item', 'courseitem', 'categoryitem'))) {
2399 $element['eid'] = 'ig'.$element['object']->id;
2400 $this->items[$element['object']->id] =& $element['object'];
2403 $levels[$depth][] =& $element;
2404 $depth++;
2405 if (empty($element['children'])) {
2406 return;
2408 $prev = 0;
2409 foreach ($element['children'] as $sortorder=>$child) {
2410 grade_tree::fill_levels($levels, $element['children'][$sortorder], $depth);
2411 $element['children'][$sortorder]['prev'] = $prev;
2412 $element['children'][$sortorder]['next'] = 0;
2413 if ($prev) {
2414 $element['children'][$prev]['next'] = $sortorder;
2416 $prev = $sortorder;
2421 * Determines whether the grade tree item can be displayed.
2422 * This is particularly targeted for grade categories that have no total (None) when rendering the grade tree.
2423 * It checks if the grade tree item is of type 'category', and makes sure that the category, or at least one of children,
2424 * can be output.
2426 * @param array $element The grade category element.
2427 * @return bool True if the grade tree item can be displayed. False, otherwise.
2429 public static function can_output_item($element) {
2430 $canoutput = true;
2432 if ($element['type'] === 'category') {
2433 $object = $element['object'];
2434 $category = grade_category::fetch(array('id' => $object->id));
2435 // Category has total, we can output this.
2436 if ($category->get_grade_item()->gradetype != GRADE_TYPE_NONE) {
2437 return true;
2440 // Category has no total and has no children, no need to output this.
2441 if (empty($element['children'])) {
2442 return false;
2445 $canoutput = false;
2446 // Loop over children and make sure at least one child can be output.
2447 foreach ($element['children'] as $child) {
2448 $canoutput = self::can_output_item($child);
2449 if ($canoutput) {
2450 break;
2455 return $canoutput;
2459 * Static recursive helper - makes full tree (all leafes are at the same level)
2461 * @param array &$element The seed of the recursion
2462 * @param int $depth How deep are we?
2464 * @return int
2466 public function inject_fillers(&$element, $depth) {
2467 $depth++;
2469 if (empty($element['children'])) {
2470 return $depth;
2472 $chdepths = array();
2473 $chids = array_keys($element['children']);
2474 $last_child = end($chids);
2475 $first_child = reset($chids);
2477 foreach ($chids as $chid) {
2478 $chdepths[$chid] = grade_tree::inject_fillers($element['children'][$chid], $depth);
2480 arsort($chdepths);
2482 $maxdepth = reset($chdepths);
2483 foreach ($chdepths as $chid=>$chd) {
2484 if ($chd == $maxdepth) {
2485 continue;
2487 if (!self::can_output_item($element['children'][$chid])) {
2488 continue;
2490 for ($i=0; $i < $maxdepth-$chd; $i++) {
2491 if ($chid == $first_child) {
2492 $type = 'fillerfirst';
2493 } else if ($chid == $last_child) {
2494 $type = 'fillerlast';
2495 } else {
2496 $type = 'filler';
2498 $oldchild =& $element['children'][$chid];
2499 $element['children'][$chid] = array('object'=>'filler', 'type'=>$type,
2500 'eid'=>'', 'depth'=>$element['object']->depth,
2501 'children'=>array($oldchild));
2505 return $maxdepth;
2509 * Static recursive helper - add colspan information into categories
2511 * @param array &$element The seed of the recursion
2513 * @return int
2515 public function inject_colspans(&$element) {
2516 if (empty($element['children'])) {
2517 return 1;
2519 $count = 0;
2520 foreach ($element['children'] as $key=>$child) {
2521 if (!self::can_output_item($child)) {
2522 continue;
2524 $count += grade_tree::inject_colspans($element['children'][$key]);
2526 $element['colspan'] = $count;
2527 return $count;
2531 * Parses the array in search of a given eid and returns a element object with
2532 * information about the element it has found.
2533 * @param int $eid Gradetree Element ID
2534 * @return object element
2536 public function locate_element($eid) {
2537 // it is a grade - construct a new object
2538 if (strpos($eid, 'n') === 0) {
2539 if (!preg_match('/n(\d+)u(\d+)/', $eid, $matches)) {
2540 return null;
2543 $itemid = $matches[1];
2544 $userid = $matches[2];
2546 //extra security check - the grade item must be in this tree
2547 if (!$item_el = $this->locate_element('ig'.$itemid)) {
2548 return null;
2551 // $gradea->id may be null - means does not exist yet
2552 $grade = new grade_grade(array('itemid'=>$itemid, 'userid'=>$userid));
2554 $grade->grade_item =& $item_el['object']; // this may speedup grade_grade methods!
2555 return array('eid'=>'n'.$itemid.'u'.$userid,'object'=>$grade, 'type'=>'grade');
2557 } else if (strpos($eid, 'g') === 0) {
2558 $id = (int) substr($eid, 1);
2559 if (!$grade = grade_grade::fetch(array('id'=>$id))) {
2560 return null;
2562 //extra security check - the grade item must be in this tree
2563 if (!$item_el = $this->locate_element('ig'.$grade->itemid)) {
2564 return null;
2566 $grade->grade_item =& $item_el['object']; // this may speedup grade_grade methods!
2567 return array('eid'=>'g'.$id,'object'=>$grade, 'type'=>'grade');
2570 // it is a category or item
2571 foreach ($this->levels as $row) {
2572 foreach ($row as $element) {
2573 if ($element['type'] == 'filler') {
2574 continue;
2576 if ($element['eid'] == $eid) {
2577 return $element;
2582 return null;
2586 * Returns a well-formed XML representation of the grade-tree using recursion.
2588 * @param array $root The current element in the recursion. If null, starts at the top of the tree.
2589 * @param string $tabs The control character to use for tabs
2591 * @return string $xml
2593 public function exporttoxml($root=null, $tabs="\t") {
2594 $xml = null;
2595 $first = false;
2596 if (is_null($root)) {
2597 $root = $this->top_element;
2598 $xml = '<?xml version="1.0" encoding="UTF-8" ?>' . "\n";
2599 $xml .= "<gradetree>\n";
2600 $first = true;
2603 $type = 'undefined';
2604 if (strpos($root['object']->table, 'grade_categories') !== false) {
2605 $type = 'category';
2606 } else if (strpos($root['object']->table, 'grade_items') !== false) {
2607 $type = 'item';
2608 } else if (strpos($root['object']->table, 'grade_outcomes') !== false) {
2609 $type = 'outcome';
2612 $xml .= "$tabs<element type=\"$type\">\n";
2613 foreach ($root['object'] as $var => $value) {
2614 if (!is_object($value) && !is_array($value) && !empty($value)) {
2615 $xml .= "$tabs\t<$var>$value</$var>\n";
2619 if (!empty($root['children'])) {
2620 $xml .= "$tabs\t<children>\n";
2621 foreach ($root['children'] as $sortorder => $child) {
2622 $xml .= $this->exportToXML($child, $tabs."\t\t");
2624 $xml .= "$tabs\t</children>\n";
2627 $xml .= "$tabs</element>\n";
2629 if ($first) {
2630 $xml .= "</gradetree>";
2633 return $xml;
2637 * Returns a JSON representation of the grade-tree using recursion.
2639 * @param array $root The current element in the recursion. If null, starts at the top of the tree.
2640 * @param string $tabs Tab characters used to indent the string nicely for humans to enjoy
2642 * @return string
2644 public function exporttojson($root=null, $tabs="\t") {
2645 $json = null;
2646 $first = false;
2647 if (is_null($root)) {
2648 $root = $this->top_element;
2649 $first = true;
2652 $name = '';
2655 if (strpos($root['object']->table, 'grade_categories') !== false) {
2656 $name = $root['object']->fullname;
2657 if ($name == '?') {
2658 $name = $root['object']->get_name();
2660 } else if (strpos($root['object']->table, 'grade_items') !== false) {
2661 $name = $root['object']->itemname;
2662 } else if (strpos($root['object']->table, 'grade_outcomes') !== false) {
2663 $name = $root['object']->itemname;
2666 $json .= "$tabs {\n";
2667 $json .= "$tabs\t \"type\": \"{$root['type']}\",\n";
2668 $json .= "$tabs\t \"name\": \"$name\",\n";
2670 foreach ($root['object'] as $var => $value) {
2671 if (!is_object($value) && !is_array($value) && !empty($value)) {
2672 $json .= "$tabs\t \"$var\": \"$value\",\n";
2676 $json = substr($json, 0, strrpos($json, ','));
2678 if (!empty($root['children'])) {
2679 $json .= ",\n$tabs\t\"children\": [\n";
2680 foreach ($root['children'] as $sortorder => $child) {
2681 $json .= $this->exportToJSON($child, $tabs."\t\t");
2683 $json = substr($json, 0, strrpos($json, ','));
2684 $json .= "\n$tabs\t]\n";
2687 if ($first) {
2688 $json .= "\n}";
2689 } else {
2690 $json .= "\n$tabs},\n";
2693 return $json;
2697 * Returns the array of levels
2699 * @return array
2701 public function get_levels() {
2702 return $this->levels;
2706 * Returns the array of grade items
2708 * @return array
2710 public function get_items() {
2711 return $this->items;
2715 * Returns a specific Grade Item
2717 * @param int $itemid The ID of the grade_item object
2719 * @return grade_item
2721 public function get_item($itemid) {
2722 if (array_key_exists($itemid, $this->items)) {
2723 return $this->items[$itemid];
2724 } else {
2725 return false;
2731 * Local shortcut function for creating an edit/delete button for a grade_* object.
2732 * @param string $type 'edit' or 'delete'
2733 * @param int $courseid The Course ID
2734 * @param grade_* $object The grade_* object
2735 * @return string html
2737 function grade_button($type, $courseid, $object) {
2738 global $CFG, $OUTPUT;
2739 if (preg_match('/grade_(.*)/', get_class($object), $matches)) {
2740 $objectidstring = $matches[1] . 'id';
2741 } else {
2742 throw new coding_exception('grade_button() only accepts grade_* objects as third parameter!');
2745 $strdelete = get_string('delete');
2746 $stredit = get_string('edit');
2748 if ($type == 'delete') {
2749 $url = new moodle_url('index.php', array('id' => $courseid, $objectidstring => $object->id, 'action' => 'delete', 'sesskey' => sesskey()));
2750 } else if ($type == 'edit') {
2751 $url = new moodle_url('edit.php', array('courseid' => $courseid, 'id' => $object->id));
2754 return $OUTPUT->action_icon($url, new pix_icon('t/'.$type, ${'str'.$type}, '', array('class' => 'iconsmall')));
2759 * This method adds settings to the settings block for the grade system and its
2760 * plugins
2762 * @global moodle_page $PAGE
2764 function grade_extend_settings($plugininfo, $courseid) {
2765 global $PAGE;
2767 $gradenode = $PAGE->settingsnav->prepend(get_string('gradeadministration', 'grades'), null, navigation_node::TYPE_CONTAINER);
2769 $strings = array_shift($plugininfo);
2771 if ($reports = grade_helper::get_plugins_reports($courseid)) {
2772 foreach ($reports as $report) {
2773 $gradenode->add($report->string, $report->link, navigation_node::TYPE_SETTING, null, $report->id, new pix_icon('i/report', ''));
2777 if ($settings = grade_helper::get_info_manage_settings($courseid)) {
2778 $settingsnode = $gradenode->add($strings['settings'], null, navigation_node::TYPE_CONTAINER);
2779 foreach ($settings as $setting) {
2780 $settingsnode->add($setting->string, $setting->link, navigation_node::TYPE_SETTING, null, $setting->id, new pix_icon('i/settings', ''));
2784 if ($imports = grade_helper::get_plugins_import($courseid)) {
2785 $importnode = $gradenode->add($strings['import'], null, navigation_node::TYPE_CONTAINER);
2786 foreach ($imports as $import) {
2787 $importnode->add($import->string, $import->link, navigation_node::TYPE_SETTING, null, $import->id, new pix_icon('i/import', ''));
2791 if ($exports = grade_helper::get_plugins_export($courseid)) {
2792 $exportnode = $gradenode->add($strings['export'], null, navigation_node::TYPE_CONTAINER);
2793 foreach ($exports as $export) {
2794 $exportnode->add($export->string, $export->link, navigation_node::TYPE_SETTING, null, $export->id, new pix_icon('i/export', ''));
2798 if ($letters = grade_helper::get_info_letters($courseid)) {
2799 $letters = array_shift($letters);
2800 $gradenode->add($strings['letter'], $letters->link, navigation_node::TYPE_SETTING, null, $letters->id, new pix_icon('i/settings', ''));
2803 if ($outcomes = grade_helper::get_info_outcomes($courseid)) {
2804 $outcomes = array_shift($outcomes);
2805 $gradenode->add($strings['outcome'], $outcomes->link, navigation_node::TYPE_SETTING, null, $outcomes->id, new pix_icon('i/outcomes', ''));
2808 if ($scales = grade_helper::get_info_scales($courseid)) {
2809 $gradenode->add($strings['scale'], $scales->link, navigation_node::TYPE_SETTING, null, $scales->id, new pix_icon('i/scales', ''));
2812 if ($gradenode->contains_active_node()) {
2813 // If the gradenode is active include the settings base node (gradeadministration) in
2814 // the navbar, typcially this is ignored.
2815 $PAGE->navbar->includesettingsbase = true;
2817 // If we can get the course admin node make sure it is closed by default
2818 // as in this case the gradenode will be opened
2819 if ($coursenode = $PAGE->settingsnav->get('courseadmin', navigation_node::TYPE_COURSE)){
2820 $coursenode->make_inactive();
2821 $coursenode->forceopen = false;
2827 * Grade helper class
2829 * This class provides several helpful functions that work irrespective of any
2830 * current state.
2832 * @copyright 2010 Sam Hemelryk
2833 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2835 abstract class grade_helper {
2837 * Cached manage settings info {@see get_info_settings}
2838 * @var grade_plugin_info|false
2840 protected static $managesetting = null;
2842 * Cached grade report plugins {@see get_plugins_reports}
2843 * @var array|false
2845 protected static $gradereports = null;
2847 * Cached grade report plugins preferences {@see get_info_scales}
2848 * @var array|false
2850 protected static $gradereportpreferences = null;
2852 * Cached scale info {@see get_info_scales}
2853 * @var grade_plugin_info|false
2855 protected static $scaleinfo = null;
2857 * Cached outcome info {@see get_info_outcomes}
2858 * @var grade_plugin_info|false
2860 protected static $outcomeinfo = null;
2862 * Cached leftter info {@see get_info_letters}
2863 * @var grade_plugin_info|false
2865 protected static $letterinfo = null;
2867 * Cached grade import plugins {@see get_plugins_import}
2868 * @var array|false
2870 protected static $importplugins = null;
2872 * Cached grade export plugins {@see get_plugins_export}
2873 * @var array|false
2875 protected static $exportplugins = null;
2877 * Cached grade plugin strings
2878 * @var array
2880 protected static $pluginstrings = null;
2882 * Cached grade aggregation strings
2883 * @var array
2885 protected static $aggregationstrings = null;
2888 * Gets strings commonly used by the describe plugins
2890 * report => get_string('view'),
2891 * scale => get_string('scales'),
2892 * outcome => get_string('outcomes', 'grades'),
2893 * letter => get_string('letters', 'grades'),
2894 * export => get_string('export', 'grades'),
2895 * import => get_string('import'),
2896 * settings => get_string('settings')
2898 * @return array
2900 public static function get_plugin_strings() {
2901 if (self::$pluginstrings === null) {
2902 self::$pluginstrings = array(
2903 'report' => get_string('view'),
2904 'scale' => get_string('scales'),
2905 'outcome' => get_string('outcomes', 'grades'),
2906 'letter' => get_string('letters', 'grades'),
2907 'export' => get_string('export', 'grades'),
2908 'import' => get_string('import'),
2909 'settings' => get_string('edittree', 'grades')
2912 return self::$pluginstrings;
2916 * Gets strings describing the available aggregation methods.
2918 * @return array
2920 public static function get_aggregation_strings() {
2921 if (self::$aggregationstrings === null) {
2922 self::$aggregationstrings = array(
2923 GRADE_AGGREGATE_MEAN => get_string('aggregatemean', 'grades'),
2924 GRADE_AGGREGATE_WEIGHTED_MEAN => get_string('aggregateweightedmean', 'grades'),
2925 GRADE_AGGREGATE_WEIGHTED_MEAN2 => get_string('aggregateweightedmean2', 'grades'),
2926 GRADE_AGGREGATE_EXTRACREDIT_MEAN => get_string('aggregateextracreditmean', 'grades'),
2927 GRADE_AGGREGATE_MEDIAN => get_string('aggregatemedian', 'grades'),
2928 GRADE_AGGREGATE_MIN => get_string('aggregatemin', 'grades'),
2929 GRADE_AGGREGATE_MAX => get_string('aggregatemax', 'grades'),
2930 GRADE_AGGREGATE_MODE => get_string('aggregatemode', 'grades'),
2931 GRADE_AGGREGATE_SUM => get_string('aggregatesum', 'grades')
2934 return self::$aggregationstrings;
2938 * Get grade_plugin_info object for managing settings if the user can
2940 * @param int $courseid
2941 * @return grade_plugin_info[]
2943 public static function get_info_manage_settings($courseid) {
2944 if (self::$managesetting !== null) {
2945 return self::$managesetting;
2947 $context = context_course::instance($courseid);
2948 self::$managesetting = array();
2949 if ($courseid != SITEID && has_capability('moodle/grade:manage', $context)) {
2950 self::$managesetting['gradebooksetup'] = new grade_plugin_info('setup',
2951 new moodle_url('/grade/edit/tree/index.php', array('id' => $courseid)),
2952 get_string('gradebooksetup', 'grades'));
2953 self::$managesetting['coursesettings'] = new grade_plugin_info('coursesettings',
2954 new moodle_url('/grade/edit/settings/index.php', array('id'=>$courseid)),
2955 get_string('coursegradesettings', 'grades'));
2957 if (self::$gradereportpreferences === null) {
2958 self::get_plugins_reports($courseid);
2960 if (self::$gradereportpreferences) {
2961 self::$managesetting = array_merge(self::$managesetting, self::$gradereportpreferences);
2963 return self::$managesetting;
2966 * Returns an array of plugin reports as grade_plugin_info objects
2968 * @param int $courseid
2969 * @return array
2971 public static function get_plugins_reports($courseid) {
2972 global $SITE;
2974 if (self::$gradereports !== null) {
2975 return self::$gradereports;
2977 $context = context_course::instance($courseid);
2978 $gradereports = array();
2979 $gradepreferences = array();
2980 foreach (core_component::get_plugin_list('gradereport') as $plugin => $plugindir) {
2981 //some reports make no sense if we're not within a course
2982 if ($courseid==$SITE->id && ($plugin=='grader' || $plugin=='user')) {
2983 continue;
2986 // Remove ones we can't see
2987 if (!has_capability('gradereport/'.$plugin.':view', $context)) {
2988 continue;
2991 // Singleview doesn't doesn't accomodate for all cap combos yet, so this is hardcoded..
2992 if ($plugin === 'singleview' && !has_all_capabilities(array('moodle/grade:viewall',
2993 'moodle/grade:edit'), $context)) {
2994 continue;
2997 $pluginstr = get_string('pluginname', 'gradereport_'.$plugin);
2998 $url = new moodle_url('/grade/report/'.$plugin.'/index.php', array('id'=>$courseid));
2999 $gradereports[$plugin] = new grade_plugin_info($plugin, $url, $pluginstr);
3001 // Add link to preferences tab if such a page exists
3002 if (file_exists($plugindir.'/preferences.php')) {
3003 $url = new moodle_url('/grade/report/'.$plugin.'/preferences.php', array('id'=>$courseid));
3004 $gradepreferences[$plugin] = new grade_plugin_info($plugin, $url,
3005 get_string('preferences', 'grades') . ': ' . $pluginstr);
3008 if (count($gradereports) == 0) {
3009 $gradereports = false;
3010 $gradepreferences = false;
3011 } else if (count($gradepreferences) == 0) {
3012 $gradepreferences = false;
3013 asort($gradereports);
3014 } else {
3015 asort($gradereports);
3016 asort($gradepreferences);
3018 self::$gradereports = $gradereports;
3019 self::$gradereportpreferences = $gradepreferences;
3020 return self::$gradereports;
3024 * Get information on scales
3025 * @param int $courseid
3026 * @return grade_plugin_info
3028 public static function get_info_scales($courseid) {
3029 if (self::$scaleinfo !== null) {
3030 return self::$scaleinfo;
3032 if (has_capability('moodle/course:managescales', context_course::instance($courseid))) {
3033 $url = new moodle_url('/grade/edit/scale/index.php', array('id'=>$courseid));
3034 self::$scaleinfo = new grade_plugin_info('scale', $url, get_string('view'));
3035 } else {
3036 self::$scaleinfo = false;
3038 return self::$scaleinfo;
3041 * Get information on outcomes
3042 * @param int $courseid
3043 * @return grade_plugin_info
3045 public static function get_info_outcomes($courseid) {
3046 global $CFG, $SITE;
3048 if (self::$outcomeinfo !== null) {
3049 return self::$outcomeinfo;
3051 $context = context_course::instance($courseid);
3052 $canmanage = has_capability('moodle/grade:manage', $context);
3053 $canupdate = has_capability('moodle/course:update', $context);
3054 if (!empty($CFG->enableoutcomes) && ($canmanage || $canupdate)) {
3055 $outcomes = array();
3056 if ($canupdate) {
3057 if ($courseid!=$SITE->id) {
3058 $url = new moodle_url('/grade/edit/outcome/course.php', array('id'=>$courseid));
3059 $outcomes['course'] = new grade_plugin_info('course', $url, get_string('outcomescourse', 'grades'));
3061 $url = new moodle_url('/grade/edit/outcome/index.php', array('id'=>$courseid));
3062 $outcomes['edit'] = new grade_plugin_info('edit', $url, get_string('editoutcomes', 'grades'));
3063 $url = new moodle_url('/grade/edit/outcome/import.php', array('courseid'=>$courseid));
3064 $outcomes['import'] = new grade_plugin_info('import', $url, get_string('importoutcomes', 'grades'));
3065 } else {
3066 if ($courseid!=$SITE->id) {
3067 $url = new moodle_url('/grade/edit/outcome/course.php', array('id'=>$courseid));
3068 $outcomes['edit'] = new grade_plugin_info('edit', $url, get_string('outcomescourse', 'grades'));
3071 self::$outcomeinfo = $outcomes;
3072 } else {
3073 self::$outcomeinfo = false;
3075 return self::$outcomeinfo;
3078 * Get information on letters
3079 * @param int $courseid
3080 * @return array
3082 public static function get_info_letters($courseid) {
3083 global $SITE;
3084 if (self::$letterinfo !== null) {
3085 return self::$letterinfo;
3087 $context = context_course::instance($courseid);
3088 $canmanage = has_capability('moodle/grade:manage', $context);
3089 $canmanageletters = has_capability('moodle/grade:manageletters', $context);
3090 if ($canmanage || $canmanageletters) {
3091 // Redirect to system context when report is accessed from admin settings MDL-31633
3092 if ($context->instanceid == $SITE->id) {
3093 $param = array('edit' => 1);
3094 } else {
3095 $param = array('edit' => 1,'id' => $context->id);
3097 self::$letterinfo = array(
3098 'view' => new grade_plugin_info('view', new moodle_url('/grade/edit/letter/index.php', array('id'=>$context->id)), get_string('view')),
3099 'edit' => new grade_plugin_info('edit', new moodle_url('/grade/edit/letter/index.php', $param), get_string('edit'))
3101 } else {
3102 self::$letterinfo = false;
3104 return self::$letterinfo;
3107 * Get information import plugins
3108 * @param int $courseid
3109 * @return array
3111 public static function get_plugins_import($courseid) {
3112 global $CFG;
3114 if (self::$importplugins !== null) {
3115 return self::$importplugins;
3117 $importplugins = array();
3118 $context = context_course::instance($courseid);
3120 if (has_capability('moodle/grade:import', $context)) {
3121 foreach (core_component::get_plugin_list('gradeimport') as $plugin => $plugindir) {
3122 if (!has_capability('gradeimport/'.$plugin.':view', $context)) {
3123 continue;
3125 $pluginstr = get_string('pluginname', 'gradeimport_'.$plugin);
3126 $url = new moodle_url('/grade/import/'.$plugin.'/index.php', array('id'=>$courseid));
3127 $importplugins[$plugin] = new grade_plugin_info($plugin, $url, $pluginstr);
3130 // Show key manager if grade publishing is enabled and the user has xml publishing capability.
3131 // XML is the only grade import plugin that has publishing feature.
3132 if ($CFG->gradepublishing && has_capability('gradeimport/xml:publish', $context)) {
3133 $url = new moodle_url('/grade/import/keymanager.php', array('id'=>$courseid));
3134 $importplugins['keymanager'] = new grade_plugin_info('keymanager', $url, get_string('keymanager', 'grades'));
3138 if (count($importplugins) > 0) {
3139 asort($importplugins);
3140 self::$importplugins = $importplugins;
3141 } else {
3142 self::$importplugins = false;
3144 return self::$importplugins;
3147 * Get information export plugins
3148 * @param int $courseid
3149 * @return array
3151 public static function get_plugins_export($courseid) {
3152 global $CFG;
3154 if (self::$exportplugins !== null) {
3155 return self::$exportplugins;
3157 $context = context_course::instance($courseid);
3158 $exportplugins = array();
3159 $canpublishgrades = 0;
3160 if (has_capability('moodle/grade:export', $context)) {
3161 foreach (core_component::get_plugin_list('gradeexport') as $plugin => $plugindir) {
3162 if (!has_capability('gradeexport/'.$plugin.':view', $context)) {
3163 continue;
3165 // All the grade export plugins has grade publishing capabilities.
3166 if (has_capability('gradeexport/'.$plugin.':publish', $context)) {
3167 $canpublishgrades++;
3170 $pluginstr = get_string('pluginname', 'gradeexport_'.$plugin);
3171 $url = new moodle_url('/grade/export/'.$plugin.'/index.php', array('id'=>$courseid));
3172 $exportplugins[$plugin] = new grade_plugin_info($plugin, $url, $pluginstr);
3175 // Show key manager if grade publishing is enabled and the user has at least one grade publishing capability.
3176 if ($CFG->gradepublishing && $canpublishgrades != 0) {
3177 $url = new moodle_url('/grade/export/keymanager.php', array('id'=>$courseid));
3178 $exportplugins['keymanager'] = new grade_plugin_info('keymanager', $url, get_string('keymanager', 'grades'));
3181 if (count($exportplugins) > 0) {
3182 asort($exportplugins);
3183 self::$exportplugins = $exportplugins;
3184 } else {
3185 self::$exportplugins = false;
3187 return self::$exportplugins;
3191 * Returns the value of a field from a user record
3193 * @param stdClass $user object
3194 * @param stdClass $field object
3195 * @return string value of the field
3197 public static function get_user_field_value($user, $field) {
3198 if (!empty($field->customid)) {
3199 $fieldname = 'customfield_' . $field->customid;
3200 if (!empty($user->{$fieldname}) || is_numeric($user->{$fieldname})) {
3201 $fieldvalue = $user->{$fieldname};
3202 } else {
3203 $fieldvalue = $field->default;
3205 } else {
3206 $fieldvalue = $user->{$field->shortname};
3208 return $fieldvalue;
3212 * Returns an array of user profile fields to be included in export
3214 * @param int $courseid
3215 * @param bool $includecustomfields
3216 * @return array An array of stdClass instances with customid, shortname, datatype, default and fullname fields
3218 public static function get_user_profile_fields($courseid, $includecustomfields = false) {
3219 global $CFG, $DB;
3221 // Gets the fields that have to be hidden
3222 $hiddenfields = array_map('trim', explode(',', $CFG->hiddenuserfields));
3223 $context = context_course::instance($courseid);
3224 $canseehiddenfields = has_capability('moodle/course:viewhiddenuserfields', $context);
3225 if ($canseehiddenfields) {
3226 $hiddenfields = array();
3229 $fields = array();
3230 require_once($CFG->dirroot.'/user/lib.php'); // Loads user_get_default_fields()
3231 require_once($CFG->dirroot.'/user/profile/lib.php'); // Loads constants, such as PROFILE_VISIBLE_ALL
3232 $userdefaultfields = user_get_default_fields();
3234 // Sets the list of profile fields
3235 $userprofilefields = array_map('trim', explode(',', $CFG->grade_export_userprofilefields));
3236 if (!empty($userprofilefields)) {
3237 foreach ($userprofilefields as $field) {
3238 $field = trim($field);
3239 if (in_array($field, $hiddenfields) || !in_array($field, $userdefaultfields)) {
3240 continue;
3242 $obj = new stdClass();
3243 $obj->customid = 0;
3244 $obj->shortname = $field;
3245 $obj->fullname = get_string($field);
3246 $fields[] = $obj;
3250 // Sets the list of custom profile fields
3251 $customprofilefields = array_map('trim', explode(',', $CFG->grade_export_customprofilefields));
3252 if ($includecustomfields && !empty($customprofilefields)) {
3253 list($wherefields, $whereparams) = $DB->get_in_or_equal($customprofilefields);
3254 $customfields = $DB->get_records_sql("SELECT f.*
3255 FROM {user_info_field} f
3256 JOIN {user_info_category} c ON f.categoryid=c.id
3257 WHERE f.shortname $wherefields
3258 ORDER BY c.sortorder ASC, f.sortorder ASC", $whereparams);
3260 foreach ($customfields as $field) {
3261 // Make sure we can display this custom field
3262 if (!in_array($field->shortname, $customprofilefields)) {
3263 continue;
3264 } else if (in_array($field->shortname, $hiddenfields)) {
3265 continue;
3266 } else if ($field->visible != PROFILE_VISIBLE_ALL && !$canseehiddenfields) {
3267 continue;
3270 $obj = new stdClass();
3271 $obj->customid = $field->id;
3272 $obj->shortname = $field->shortname;
3273 $obj->fullname = format_string($field->name);
3274 $obj->datatype = $field->datatype;
3275 $obj->default = $field->defaultdata;
3276 $fields[] = $obj;
3280 return $fields;
3284 * This helper method gets a snapshot of all the weights for a course.
3285 * It is used as a quick method to see if any wieghts have been automatically adjusted.
3286 * @param int $courseid
3287 * @return array of itemid -> aggregationcoef2
3289 public static function fetch_all_natural_weights_for_course($courseid) {
3290 global $DB;
3291 $result = array();
3293 $records = $DB->get_records('grade_items', array('courseid'=>$courseid), 'id', 'id, aggregationcoef2');
3294 foreach ($records as $record) {
3295 $result[$record->id] = $record->aggregationcoef2;
3297 return $result;