Всплывающее окошко Submit all and finish
как отключить третье подтверждение выполненного теста - всплывающее окошко Submit all and finish (Отправить всё и завершить тест)
go to /mod/quiz/renderer.php
comment out line 742 like this (add // infront):
?//$button->add_action(new confirm_action(get_string('confirmclose', 'quiz'), null,
Then in the following line, remove 2 brackets from this:-
get_string('submitallandfinish', 'quiz')));
to this:-
get_string('submitallandfinish', 'quiz');
Всплывающие подсказке в Админке
если используется moodle 3.3.2 и тема Adaptable то исчезают всплывающие подсказки с помощью по Админке - они открываются в новых окнах
чтобы вернуть вставляем код
// Setup help icon overlays.
$this->page->requires->yui_module('moodle-core-popuphelp', 'M.core.init_popuphelp');
$this->page->requires->strings_for_js(array(
'morehelp',
'loadinghelp',
), 'moodle');
в lib/outputrenderers.php между
// Set up help link popups for all links with the helptooltip class
$this->page->requires->js_init_call('M.util.help_popups.setup');
и
$focus = $this->page->focuscontrol;