1 This files describes API changes for question behaviour plugins.
5 * This plugin type now supports cron in the standard way. If required, Create a
6 lib.php file containing
7 function qbehaviour_mypluginname_cron() {};
12 public static function get_required_behaviours()
13 method is no more. Instead use the ->dependencies facility in version.php. E.g.
14 $plugin->dependencies = array(
15 'qbehaviour_immediatefeedback' => 2011102700,
16 'qbehaviour_deferredcbm' => 2011102700
19 2) The old required_question_definition_type method has been replaced by a new
20 is_compatible_question method. You should change your behaviour to override the
21 new method, not the old one. This change has been implemented in a
22 backwards-compatible way, so behaviours will not break.