c12e7ff470b3c8a1d93f4b35e9e2de43ef965d33
[moodle.git] / mod / quiz / report / upgrade.txt
1 This files describes API changes for quiz report plugins.
3 Overview of this plugin type at http://docs.moodle.org/dev/Quiz_reports
6 === earlier versions ===
8 * ... API changes were not documented properly. Sorry. (There weren't many!)
11 === 2.2 ===
13 * Plugins should be converted to implement cron in the standard way. In lib.php,
14 define a
15 function quiz_myreportname_cron() {};
16 This replaces the old way of having a separate cron.php file. Also, the cron
17 frequency should be defined in version.php, not in the quiz_reports table.
20 === 2.3 ===
22 * Support for the old way of doing cron in a separate cron.php file has been removed.