mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Merge branch 'MDL-61290_master' of https://github.com/aanabit/moodle
This commit is contained in:
commit
77f9983189
1 changed files with 21 additions and 2 deletions
|
@ -113,8 +113,12 @@ class mod_feedback_responses_table extends table_sql {
|
|||
*/
|
||||
protected function init($group = 0) {
|
||||
|
||||
$tablecolumns = array('userpic', 'fullname');
|
||||
$tableheaders = array(get_string('userpic'), get_string('fullnameuser'));
|
||||
$tablecolumns = array('userpic', 'fullname', 'groups');
|
||||
$tableheaders = array(
|
||||
get_string('userpic'),
|
||||
get_string('fullnameuser'),
|
||||
get_string('groups')
|
||||
);
|
||||
|
||||
$extrafields = get_extra_user_fields($this->get_context());
|
||||
$ufields = user_picture::fields('u', $extrafields, $this->useridfield);
|
||||
|
@ -258,6 +262,21 @@ class mod_feedback_responses_table extends table_sql {
|
|||
return $name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepares column groups for display
|
||||
* @param array $row
|
||||
* @return string
|
||||
*/
|
||||
public function col_groups($row) {
|
||||
$groups = '';
|
||||
if ($usergrps = groups_get_all_groups($this->feedbackstructure->get_cm()->course, $row->userid, 0, 'name')) {
|
||||
foreach ($usergrps as $group) {
|
||||
$groups .= format_string($group->name). ' ';
|
||||
}
|
||||
}
|
||||
return trim($groups);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds common values to the table that do not change the number or order of entries and
|
||||
* are only needed when outputting or downloading data.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue