Revert "MDL-34257 quiz 'secure' mode: PAGE initialisation order issues."
This reverts commit e65f54f289.
This commit is contained in:
@@ -75,9 +75,8 @@ if ($attemptobj->is_finished()) {
|
||||
|
||||
// Check the access rules.
|
||||
$accessmanager = $attemptobj->get_access_manager(time());
|
||||
$accessmanager->setup_attempt_page($PAGE);
|
||||
$output = $PAGE->get_renderer('mod_quiz');
|
||||
$messages = $accessmanager->prevent_access();
|
||||
$output = $PAGE->get_renderer('mod_quiz');
|
||||
if (!$attemptobj->is_preview_user() && $messages) {
|
||||
print_error('attempterror', 'quiz', $attemptobj->view_url(),
|
||||
$output->access_messages($messages));
|
||||
@@ -111,6 +110,7 @@ $title = get_string('attempt', 'quiz', $attemptobj->get_attempt_number());
|
||||
$headtags = $attemptobj->get_html_head_contributions($page);
|
||||
$PAGE->set_title(format_string($attemptobj->get_quiz_name()));
|
||||
$PAGE->set_heading($attemptobj->get_course()->fullname);
|
||||
$accessmanager->setup_attempt_page($PAGE);
|
||||
|
||||
if ($attemptobj->is_last_page($page)) {
|
||||
$nextpage = -1;
|
||||
|
||||
+1
-2
@@ -53,8 +53,6 @@ $attemptobj->check_review_capability();
|
||||
|
||||
// Create an object to manage all the other (non-roles) access rules.
|
||||
$accessmanager = $attemptobj->get_access_manager(time());
|
||||
$accessmanager->setup_attempt_page($PAGE);
|
||||
|
||||
$options = $attemptobj->get_display_options(true);
|
||||
|
||||
// Check permissions.
|
||||
@@ -106,6 +104,7 @@ if ($attemptobj->is_preview_user() && $attemptobj->is_own_attempt()) {
|
||||
$headtags = $attemptobj->get_html_head_contributions($page, $showall);
|
||||
$PAGE->set_title(format_string($attemptobj->get_quiz_name()));
|
||||
$PAGE->set_heading($attemptobj->get_course()->fullname);
|
||||
$accessmanager->setup_attempt_page($PAGE);
|
||||
|
||||
// Summary table start ============================================================================
|
||||
|
||||
|
||||
@@ -57,9 +57,8 @@ if ($attemptobj->is_preview_user()) {
|
||||
|
||||
// Check access.
|
||||
$accessmanager = $attemptobj->get_access_manager(time());
|
||||
$accessmanager->setup_attempt_page($PAGE);
|
||||
$output = $PAGE->get_renderer('mod_quiz');
|
||||
$messages = $accessmanager->prevent_access();
|
||||
$output = $PAGE->get_renderer('mod_quiz');
|
||||
if (!$attemptobj->is_preview_user() && $messages) {
|
||||
print_error('attempterror', 'quiz', $attemptobj->view_url(),
|
||||
$output->access_messages($messages));
|
||||
@@ -87,6 +86,7 @@ $PAGE->blocks->add_fake_block($navbc, $firstregion);
|
||||
$PAGE->navbar->add(get_string('summaryofattempt', 'quiz'));
|
||||
$PAGE->set_title(format_string($attemptobj->get_quiz_name()));
|
||||
$PAGE->set_heading($attemptobj->get_course()->fullname);
|
||||
$accessmanager->setup_attempt_page($PAGE);
|
||||
|
||||
// Display the page.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user