mirror of
https://github.com/moodle/moodle.git
synced 2025-03-13 04:01:40 +01:00
80 lines
2.7 KiB
PHP
Executable File
80 lines
2.7 KiB
PHP
Executable File
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
/**
|
|
* Ad-hoc quiz upgrade plugin. This screen lists quizzes with attempts that can
|
|
* be reset.
|
|
*
|
|
* @package local
|
|
* @subpackage qeupgradehelper
|
|
* @copyright 2010 The Open University
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
|
|
require_once(dirname(__FILE__) . '/../../../config.php');
|
|
require_once(dirname(__FILE__) . '/locallib.php');
|
|
require_once($CFG->libdir . '/adminlib.php');
|
|
|
|
require_login();
|
|
require_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM));
|
|
|
|
// Start the page.
|
|
admin_externalpage_setup('reportquizupgrade');
|
|
admin_externalpage_print_header();
|
|
|
|
$quizzes = report_quizupgrade_get_resettable_quizzes();
|
|
|
|
if (empty($quizzes)) {
|
|
print_heading(get_string('none'));
|
|
|
|
} else {
|
|
print_heading(get_string('quizzesthatcanbereset', 'report_quizupgrade'));
|
|
print_box(get_string('intro', 'report_quizupgrade'));
|
|
|
|
$table = new stdClass;
|
|
$table->head = array(
|
|
get_string('quizid', 'report_quizupgrade'),
|
|
get_string('course'),
|
|
get_string('modulename', 'quiz'),
|
|
get_string('convertedattempts', 'report_quizupgrade'),
|
|
get_string('actions', 'report_quizupgrade'),
|
|
);
|
|
|
|
foreach ($quizzes as $quiz) {
|
|
$table->data[] = array(
|
|
$quiz->id,
|
|
'<a href="' . $CFG->wwwroot . '/course/view.php?id=' . $quiz->courseid .
|
|
'">' . format_string($quiz->shortname) . '</a>',
|
|
'<a href="' . $CFG->wwwroot . '/mod/quiz/view.php?q=' . $quiz->id .
|
|
'">' . format_string($quiz->name) . '</a>',
|
|
$quiz->convertedattempts,
|
|
'<a href="' . $CFG->wwwroot . '/' . $CFG->admin .
|
|
'/report/quizupgrade/resetquiz.php?quizid=' . $quiz->id .
|
|
'">' . get_string('resetattempts', 'report_quizupgrade') . '</a>',
|
|
);
|
|
}
|
|
|
|
print_table($table);
|
|
}
|
|
|
|
echo '<p><a href="' . report_quizupgrade_url('index.php') . '">' .
|
|
get_string('gotoindex', 'report_quizupgrade') . '</a></p>';
|
|
|
|
admin_externalpage_print_footer();
|