';
}
public function wrap_html_finish() {
global $PAGE;
if ($this->is_downloading() || !$this->includecheckboxes) {
return;
}
echo '
';
echo '
' .
get_string('selectall', 'quiz') . ' / ';
echo '
' .
get_string('selectnone', 'quiz') . ' ';
$PAGE->requires->js_amd_inline("
require(['jquery'], function($) {
$('#checkattempts').click(function(e) {
$('#attemptsform').find('input:checkbox').prop('checked', true);
e.preventDefault();
});
$('#uncheckattempts').click(function(e) {
$('#attemptsform').find('input:checkbox').prop('checked', false);
e.preventDefault();
});
});");
echo ' ';
$this->submit_buttons();
echo '
';
// Close the form.
echo '
';
echo '