mirror of
https://github.com/moodle/moodle.git
synced 2025-03-06 00:39:54 +01:00
* Support for old non-standard cron for quiz reports dropped. (Standard cron support was added in 2.2 * Cron support added for qbehaviour, qformat and quizacces plugins. * qtypes were already supported in the standard way.
23 lines
632 B
Plaintext
23 lines
632 B
Plaintext
This files describes API changes for quiz report plugins.
|
|
|
|
Overview of this plugin type at http://docs.moodle.org/dev/Quiz_reports
|
|
|
|
|
|
=== earlier versions ===
|
|
|
|
* ... API changes were not documented properly. Sorry. (There weren't many!)
|
|
|
|
|
|
=== 2.2 ===
|
|
|
|
* Plugins should be converted to implement cron in the standard way. In lib.php,
|
|
define a
|
|
function quiz_myreportname_cron() {};
|
|
This replaces the old way of having a separate cron.php file. Also, the cron
|
|
frequency should be defined in version.php, not in the quiz_reports table.
|
|
|
|
|
|
=== 2.3 ===
|
|
|
|
* Support for the old way of doing cron in a separate cron.php file has been removed.
|