mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
Merge branch 'MDL-46188' of https://github.com/shashirepo/moodle
This commit is contained in:
commit
9fb3fdd75f
@ -1213,21 +1213,18 @@ class core_course_management_renderer extends plugin_renderer_base {
|
||||
}
|
||||
// Show/Hide.
|
||||
if ($course->can_change_visibility()) {
|
||||
if ($course->visible) {
|
||||
$actions[] = $this->output->action_icon(
|
||||
new moodle_url($baseurl, array('action' => 'hidecourse')),
|
||||
new pix_icon('t/show', get_string('hide')),
|
||||
null,
|
||||
array('data-action' => 'hide', 'class' => 'action-hide')
|
||||
);
|
||||
} else {
|
||||
$actions[] = $this->output->action_icon(
|
||||
new moodle_url($baseurl, array('action' => 'showcourse')),
|
||||
new pix_icon('t/hide', get_string('show')),
|
||||
null,
|
||||
array('data-action' => 'show', 'class' => 'action-show')
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (empty($actions)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user