weekly release 2.3dev
[moodle.git] / mod / chat / db / events.php
blob9203d970273cad9d197b35fa273301e7aaae02d1
1 <?php
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.
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/>.
18 /**
19 * User logout event handler definition.
21 * @package mod_chat
22 * @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 /* List of handlers */
27 $handlers = array (
28 'user_logout' => array (
29 'handlerfile' => '/mod/chat/lib.php',
30 'handlerfunction' => 'chat_user_logout',
31 'schedule' => 'instant',
32 'internal' => 1,