2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * Definition of core event observers.
20 * The observers defined in this file are notified when respective events are triggered. All plugins
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}
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.
38 // No more old events!
41 // List of events_2 observers.
46 'eventname' => '\core\event\course_module_completion_updated',
47 'callback' => 'core_badges_observer::course_module_criteria_review',
50 'eventname' => '\core\event\badge_awarded',
51 'callback' => 'core_badges_observer::badge_criteria_review',
54 'eventname' => '\core\event\course_completed',
55 'callback' => 'core_badges_observer::course_criteria_review',
58 'eventname' => '\core\event\user_updated',
59 'callback' => 'core_badges_observer::profile_criteria_review',
62 'eventname' => '\core\event\cohort_member_added',
63 'callback' => 'core_badges_observer::cohort_criteria_review',
68 'eventname' => '\core\event\course_completed',
69 'callback' => 'core_competency\api::observe_course_completed',
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.