mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 02:46:40 +02:00

Further improvements to this code, including resolving edge cases: * The new feature can only be used when it is possible for the previous question in the quiz to be complete. * Also, this new feature cannot be used in combination with shuffle questions, because that make no sense; nor in combination with sequential navigation, because to make that work properly would be a lot of effort. If someone needs that to work later, it should be possible for them to implement it. * There were changes in the edit renderer API, to try to make things more consistent, and to make it less likely we will need to change things again in the future. See mod/quiz/upgrade.txt. * As part of this change, the styling of the Edit quiz page was tweaked to make slighly more efficient use of the horizontal space, and to be more symmetrical.
30 lines
1 KiB
PHP
30 lines
1 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Quiz activity version information.
|
|
*
|
|
* @package mod_quiz
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->version = 2015030500;
|
|
$plugin->requires = 2014110400;
|
|
$plugin->component = 'mod_quiz';
|
|
$plugin->cron = 60;
|