mirror of
https://github.com/moodle/moodle.git
synced 2025-05-02 06:22:59 +02:00
Merge branch 'MDL-38065-fix-master' of git://github.com/jmarthaler/moodle
This commit is contained in:
commit
b3729c99aa
@ -236,16 +236,6 @@ class grade_report_user extends grade_report {
|
||||
// Grab the grade_tree for this course
|
||||
$this->gtree = new grade_tree($this->courseid, false, $this->switch, null, !$CFG->enableoutcomes);
|
||||
|
||||
// Determine the number of rows and indentation
|
||||
$this->maxdepth = 1;
|
||||
$this->inject_rowspans($this->gtree->top_element);
|
||||
$this->maxdepth++; // Need to account for the lead column that spans all children
|
||||
for ($i = 1; $i <= $this->maxdepth; $i++) {
|
||||
$this->evenodd[$i] = 0;
|
||||
}
|
||||
|
||||
$this->tabledata = array();
|
||||
|
||||
// Get the user (for full name).
|
||||
$this->user = $DB->get_record('user', array('id' => $userid));
|
||||
|
||||
@ -259,6 +249,16 @@ class grade_report_user extends grade_report {
|
||||
$this->canviewhidden = has_capability('moodle/grade:viewhidden', $coursecontext);
|
||||
}
|
||||
|
||||
// Determine the number of rows and indentation.
|
||||
$this->maxdepth = 1;
|
||||
$this->inject_rowspans($this->gtree->top_element);
|
||||
$this->maxdepth++; // Need to account for the lead column that spans all children.
|
||||
for ($i = 1; $i <= $this->maxdepth; $i++) {
|
||||
$this->evenodd[$i] = 0;
|
||||
}
|
||||
|
||||
$this->tabledata = array();
|
||||
|
||||
// base url for sorting by first/last name
|
||||
$this->baseurl = $CFG->wwwroot.'/grade/report?id='.$courseid.'&userid='.$userid;
|
||||
$this->pbarurl = $this->baseurl;
|
||||
@ -287,7 +287,15 @@ class grade_report_user extends grade_report {
|
||||
$count = 1;
|
||||
|
||||
foreach ($element['children'] as $key=>$child) {
|
||||
$count += $this->inject_rowspans($element['children'][$key]);
|
||||
// If category is hidden then do not include it in the rowspan.
|
||||
if ($child['type'] == 'category' && $child['object']->is_hidden() && !$this->canviewhidden
|
||||
&& ($this->showhiddenitems == GRADE_REPORT_USER_HIDE_HIDDEN
|
||||
|| ($this->showhiddenitems == GRADE_REPORT_USER_HIDE_UNTIL && !$child['object']->is_hiddenuntil()))) {
|
||||
// Just calculate the rowspans for children of this category, don't add them to the count.
|
||||
$this->inject_rowspans($element['children'][$key]);
|
||||
} else {
|
||||
$count += $this->inject_rowspans($element['children'][$key]);
|
||||
}
|
||||
}
|
||||
|
||||
$element['rowspan'] = $count;
|
||||
|
Loading…
x
Reference in New Issue
Block a user