diff --git a/mod/quiz/accessrule/upgrade.txt b/mod/quiz/accessrule/upgrade.txt index a8d94ff3a01..df17c03a28b 100644 --- a/mod/quiz/accessrule/upgrade.txt +++ b/mod/quiz/accessrule/upgrade.txt @@ -2,11 +2,9 @@ This files describes API changes for quiz access rule plugins. Overview of this plugin type at http://docs.moodle.org/dev/Quiz_access_rules +=== 2.4 === -=== 2.2 === - -* This plugin type was new in Moodle 2.2! - +* Replaced time_left() with new time_left_display() and end_time() functions. === 2.3 === @@ -14,6 +12,8 @@ Overview of this plugin type at http://docs.moodle.org/dev/Quiz_access_rules lib.php file containing function quizaccess_mypluginname_cron() {}; -=== 2.4 === +=== 2.2 === + +* This plugin type was new in Moodle 2.2! + -* Replaced time_left() with new time_left_display() and end_time() functions. \ No newline at end of file diff --git a/question/behaviour/upgrade.txt b/question/behaviour/upgrade.txt index 5f51d0aff00..abe0b393525 100644 --- a/question/behaviour/upgrade.txt +++ b/question/behaviour/upgrade.txt @@ -1,5 +1,11 @@ This files describes API changes for question behaviour plugins. +=== 2.3 === + +* This plugin type now supports cron in the standard way. If required, Create a + lib.php file containing +function qbehaviour_mypluginname_cron() {}; + === 2.2 === 1) The old @@ -14,10 +20,3 @@ $plugin->dependencies = array( is_compatible_question method. You should change your behaviour to override the new method, not the old one. This change has been implemented in a backwards-compatible way, so behaviours will not break. - - -=== 2.3 === - -* This plugin type now supports cron in the standard way. If required, Create a - lib.php file containing -function qbehaviour_mypluginname_cron() {}; diff --git a/question/format/upgrade.txt b/question/format/upgrade.txt index b31a7a08ad8..527526d71c1 100644 --- a/question/format/upgrade.txt +++ b/question/format/upgrade.txt @@ -1,5 +1,11 @@ This files describes API changes for question import/export format plugins. +=== 2.3 === + +* This plugin type now supports cron in the standard way. If required, Create a + lib.php file containing +function qformat_mypluginname_cron() {}; + === 2.1.5 / 2.2.3 / 2.3 === * The readquestions method used to take a second argument $context. However, at @@ -24,9 +30,3 @@ $string['pluginname'] = 'Aiken format'; $string['pluginname_help'] = 'This is a simple format ...'; $string['pluginname_link'] = 'qformat/aiken'; - -=== 2.3 === - -* This plugin type now supports cron in the standard way. If required, Create a - lib.php file containing -function qformat_mypluginname_cron() {};