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 | * Cohort enrolment plugin event handler definition. | |
20 | * | |
21 | * @package enrol_cohort | |
22 | * @copyright 2010 Petr Skoda {@link http://skodak.org} | |
23 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
24 | */ | |
25 | ||
26 | /* List of handlers */ | |
27 | $handlers = array ( | |
28 | 'cohort_member_added' => array ( | |
29 | 'handlerfile' => '/enrol/cohort/locallib.php', | |
30 | 'handlerfunction' => array('enrol_cohort_handler', 'member_added'), | |
31 | 'schedule' => 'instant' | |
32 | ), | |
33 | ||
34 | 'cohort_member_removed' => array ( | |
35 | 'handlerfile' => '/enrol/cohort/locallib.php', | |
36 | 'handlerfunction' => array('enrol_cohort_handler', 'member_removed'), | |
37 | 'schedule' => 'instant' | |
38 | ), | |
39 | ||
40 | 'cohort_deleted' => array ( | |
41 | 'handlerfile' => '/enrol/cohort/locallib.php', | |
42 | 'handlerfunction' => array('enrol_cohort_handler', 'deleted'), | |
43 | 'schedule' => 'instant' | |
44 | ), | |
45 | ); |