mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
MDL-70786 report_completion: respect fullname setting.
This commit is contained in:
parent
b5fa7e74bb
commit
ad7599a680
@ -554,7 +554,7 @@ foreach ($progress as $user) {
|
||||
if ($csv) {
|
||||
$row = array();
|
||||
$row[] = $user->id;
|
||||
$row[] = fullname($user);
|
||||
$row[] = fullname($user, has_capability('moodle/site:viewfullnames', $context));
|
||||
foreach ($extrafields as $field) {
|
||||
$row[] = $user->{$field};
|
||||
}
|
||||
@ -567,7 +567,8 @@ foreach ($progress as $user) {
|
||||
$userurl = new moodle_url('/user/view.php', array('id' => $user->id, 'course' => $course->id));
|
||||
}
|
||||
|
||||
print '<th scope="row"><a href="'.$userurl->out().'">'.fullname($user).'</a></th>';
|
||||
print '<th scope="row"><a href="' . $userurl->out() . '">' .
|
||||
fullname($user, has_capability('moodle/site:viewfullnames', $context)) . '</a></th>';
|
||||
foreach ($extrafields as $field) {
|
||||
echo '<td>'.s($user->{$field}).'</td>';
|
||||
}
|
||||
|
37
report/completion/tests/behat/completion_report.feature
Normal file
37
report/completion/tests/behat/completion_report.feature
Normal file
@ -0,0 +1,37 @@
|
||||
@report @report_completion
|
||||
Feature: See the completion for items in a course
|
||||
In order see completion data
|
||||
As a teacher
|
||||
I need to view completion report
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
| username | firstname | lastname | email | idnumber | middlename | alternatename | firstnamephonetic | lastnamephonetic |
|
||||
| teacher1 | Teacher | 1 | teacher1@example.com | t1 | | fred | | |
|
||||
| student1 | Grainne | Beauchamp | student1@example.com | s1 | Ann | Jill | Gronya | Beecham |
|
||||
And the following "courses" exist:
|
||||
| fullname | shortname | category | enablecompletion |
|
||||
| Course 1 | C1 | 0 | 1 |
|
||||
And the following "course enrolments" exist:
|
||||
| user | course | role |
|
||||
| teacher1 | C1 | editingteacher |
|
||||
| student1 | C1 | student |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | completion | completionview |
|
||||
| page | PageName1 | PageDesc1 | C1 | PAGE1 | 1 | 1 |
|
||||
And the following config values are set as admin:
|
||||
| fullnamedisplay | firstname |
|
||||
| alternativefullnameformat | middlename, alternatename, firstname, lastname |
|
||||
|
||||
@javascript
|
||||
Scenario: Go to the completion report
|
||||
Given I log in as "teacher1"
|
||||
And I am on "Course 1" course homepage
|
||||
And I navigate to "Course completion" in current page administration
|
||||
And I expand all fieldsets
|
||||
And I set the following fields to these values:
|
||||
| Page - PageName1 | 1 |
|
||||
And I press "Save changes"
|
||||
And I am on "Course 1" course homepage
|
||||
When I navigate to "Reports > Course completion" in current page administration
|
||||
Then I should see "Ann, Jill, Grainne, Beauchamp"
|
Loading…
x
Reference in New Issue
Block a user