Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
=== 4.5 Onwards ===
2
 
3
This file has been replaced by UPGRADING.md. See MDL-81125 for further information.
4
 
5
===
1 efrain 6
This files describes API changes for quiz access rule plugins.
7
 
8
Overview of this plugin type at http://docs.moodle.org/dev/Quiz_access_rules
9
 
10
=== 4.2 ===
11
 
12
* Note that class mod_quiz_preflight_check_form has been renamed to
13
  mod_quiz\form\preflight_check_form.
14
* The base class quiz_access_rule_base has been moved to mod_quiz\local\access_rule_base.
15
  Please:
16
  1. update your class declaration to ... extends access_rule_base {
17
  2. Add use mod_quiz\local\access_rule_base;
18
  3. Remove require_once($CFG->dirroot . '/mod/quiz/accessrule/accessrulebase.php');
19
 
20
 
21
=== 2.8, 2.7.1, 2.6.4 and 2.5.7 ===
22
 
23
* New static method delete_settings for access rules, which is called when a
24
  quiz is deleted.
25
 
26
 
27
=== 2.4 and 2.3.4 ===
28
 
29
* Replaced time_left() with new time_left_display() and end_time() functions.
30
 
31
 
32
=== 2.3 ===
33
 
34
* This plugin type now supports cron in the standard way. If required, Create a
35
  lib.php file containing
36
function quizaccess_mypluginname_cron() {};
37
 
38
 
39
=== 2.2 ===
40
 
41
* This plugin type was new in Moodle 2.2!