MDL-80082 tool_cohortroles: Output 'Nothing to display' as notification.

This commit is contained in:
Luca Bösch
2024-02-19 15:10:32 +01:00
parent 9aa5b450e6
commit e6962170ad
@@ -210,13 +210,13 @@ class cohort_role_assignments_table extends table_sql {
}
/**
* Override the default implementation to set a decent heading level.
* Override the default implementation to set a notification.
*/
public function print_nothing_to_display() {
global $OUTPUT;
echo $this->render_reset_button();
$this->print_initials_bar();
echo $OUTPUT->heading(get_string('nothingtodisplay'), 4);
echo $OUTPUT->notification(get_string('nothingtodisplay'), 'info', false);
}
/**