mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 02:46:40 +02:00
Merge branch 'MDL-82987-main' of https://github.com/mihailges/moodle into main
This commit is contained in:
commit
445fe37166
2 changed files with 3 additions and 3 deletions
|
@ -1060,7 +1060,7 @@ class renderer extends \plugin_renderer_base {
|
|||
$link = '';
|
||||
if ($showviewlink) {
|
||||
$previewstr = get_string('viewsubmission', 'assign');
|
||||
$icon = $this->output->pix_icon('t/preview', $previewstr);
|
||||
$icon = $this->output->pix_icon('t/viewdetails', $previewstr);
|
||||
|
||||
$expandstr = get_string('viewfull', 'assign');
|
||||
$expandicon = $this->output->pix_icon('t/switch_plus', $expandstr);
|
||||
|
@ -1177,7 +1177,7 @@ class renderer extends \plugin_renderer_base {
|
|||
$link = '';
|
||||
if ($showviewlink) {
|
||||
$previewstr = get_string('viewfeedback', 'assign');
|
||||
$icon = $this->output->pix_icon('t/preview', $previewstr);
|
||||
$icon = $this->output->pix_icon('t/viewdetails', $previewstr);
|
||||
|
||||
$expandstr = get_string('viewfull', 'assign');
|
||||
$expandicon = $this->output->pix_icon('t/switch_plus', $expandstr);
|
||||
|
|
|
@ -1594,7 +1594,7 @@ class assign_grading_table extends table_sql implements renderable {
|
|||
$separator = '';
|
||||
if ($showviewlink) {
|
||||
$viewstr = get_string('view' . substr($plugin->get_subtype(), strlen('assign')), 'assign');
|
||||
$icon = $this->output->pix_icon('t/preview', $viewstr);
|
||||
$icon = $this->output->pix_icon('t/viewdetails', $viewstr);
|
||||
$urlparams = array('id' => $this->assignment->get_course_module()->id,
|
||||
'sid' => $item->id,
|
||||
'gid' => $item->id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue