Merge branch 'MDL-64012' of https://github.com/timhunt/moodle
[moodle.git] / lib / db / events.php
blob0e1e3e17b1c96d98ce593ffd8c30bfe14e159754
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Definition of core event observers.
20 * The observers defined in this file are notified when respective events are triggered. All plugins
21 * support this.
23 * For more information, take a look to the documentation available:
24 * - Events API: {@link http://docs.moodle.org/dev/Event_2}
25 * - Upgrade API: {@link http://docs.moodle.org/dev/Upgrade_API}
27 * @package core
28 * @category event
29 * @copyright 2007 onwards Martin Dougiamas http://dougiamas.com
30 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33 defined('MOODLE_INTERNAL') || die();
35 // List of legacy event handlers.
37 $handlers = array(
38 // No more old events!
41 // List of events_2 observers.
43 $observers = array(
45 array(
46 'eventname' => '\core\event\course_module_completion_updated',
47 'callback' => 'core_badges_observer::course_module_criteria_review',
49 array(
50 'eventname' => '\core\event\badge_awarded',
51 'callback' => 'core_badges_observer::badge_criteria_review',
53 array(
54 'eventname' => '\core\event\course_completed',
55 'callback' => 'core_badges_observer::course_criteria_review',
57 array(
58 'eventname' => '\core\event\user_updated',
59 'callback' => 'core_badges_observer::profile_criteria_review',
61 array(
62 'eventname' => '\core\event\cohort_member_added',
63 'callback' => 'core_badges_observer::cohort_criteria_review',
66 // Competencies.
67 array(
68 'eventname' => '\core\event\course_completed',
69 'callback' => 'core_competency\api::observe_course_completed',
71 array(
72 'eventname' => '\core\event\course_module_completion_updated',
73 'callback' => 'core_competency\api::observe_course_module_completion_updated',
77 // List of all events triggered by Moodle can be found using Events list report.