Commit | Line | Data |
---|---|---|
df997f84 PS |
1 | <?php |
2 | ||
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
5 | // Moodle is free software: you can redistribute it and/or modify | |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
14 | // | |
15 | // You should have received a copy of the GNU General Public License | |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
18 | /** | |
19 | * Meta course enrolment plugin event handler definition. | |
20 | * | |
e2382027 PS |
21 | * @package enrol |
22 | * @subpackage meta | |
23 | * @copyright 2010 Petr Skoda {@link http://skodak.org} | |
24 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
df997f84 PS |
25 | */ |
26 | ||
e2382027 PS |
27 | defined('MOODLE_INTERNAL') || die(); |
28 | ||
df997f84 PS |
29 | /* List of handlers */ |
30 | $handlers = array ( | |
31 | 'role_assigned' => array ( | |
32 | 'handlerfile' => '/enrol/meta/locallib.php', | |
33 | 'handlerfunction' => array('enrol_meta_handler', 'role_assigned'), | |
650462df PS |
34 | 'schedule' => 'instant', |
35 | 'internal' => 1, | |
df997f84 PS |
36 | ), |
37 | ||
38 | 'role_unassigned' => array ( | |
39 | 'handlerfile' => '/enrol/meta/locallib.php', | |
40 | 'handlerfunction' => array('enrol_meta_handler', 'role_unassigned'), | |
650462df PS |
41 | 'schedule' => 'instant', |
42 | 'internal' => 1, | |
df997f84 PS |
43 | ), |
44 | ||
45 | 'user_enrolled' => array ( | |
46 | 'handlerfile' => '/enrol/meta/locallib.php', | |
47 | 'handlerfunction' => array('enrol_meta_handler', 'user_enrolled'), | |
650462df PS |
48 | 'schedule' => 'instant', |
49 | 'internal' => 1, | |
df997f84 PS |
50 | ), |
51 | ||
52 | 'user_unenrolled' => array ( | |
53 | 'handlerfile' => '/enrol/meta/locallib.php', | |
54 | 'handlerfunction' => array('enrol_meta_handler', 'user_unenrolled'), | |
650462df PS |
55 | 'schedule' => 'instant', |
56 | 'internal' => 1, | |
df997f84 PS |
57 | ), |
58 | ||
379434e4 PS |
59 | 'user_enrol_modified' => array ( |
60 | 'handlerfile' => '/enrol/meta/locallib.php', | |
61 | 'handlerfunction' => array('enrol_meta_handler', 'user_enrol_modified'), | |
62 | 'schedule' => 'instant', | |
63 | 'internal' => 1, | |
64 | ), | |
65 | ||
df997f84 PS |
66 | 'course_deleted' => array ( |
67 | 'handlerfile' => '/enrol/meta/locallib.php', | |
68 | 'handlerfunction' => array('enrol_meta_handler', 'course_deleted'), | |
650462df PS |
69 | 'schedule' => 'instant', |
70 | 'internal' => 1, | |
df997f84 PS |
71 | ), |
72 | ); |