1d422980 |
1 | <?php |
3b120e46 |
2 | |
3 | /////////////////////////////////////////////////////////////////////////// |
4 | // // |
5 | // NOTICE OF COPYRIGHT // |
6 | // // |
7 | // Moodle - Modular Object-Oriented Dynamic Learning Environment // |
8 | // http://moodle.com // |
9 | // // |
10 | // Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com // |
11 | // // |
12 | // This program is free software; you can redistribute it and/or modify // |
13 | // it under the terms of the GNU General Public License as published by // |
14 | // the Free Software Foundation; either version 2 of the License, or // |
15 | // (at your option) any later version. // |
16 | // // |
17 | // This program is distributed in the hope that it will be useful, // |
18 | // but WITHOUT ANY WARRANTY; without even the implied warranty of // |
19 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // |
20 | // GNU General Public License for more details: // |
21 | // // |
22 | // http://www.gnu.org/copyleft/gpl.html // |
23 | // // |
24 | /////////////////////////////////////////////////////////////////////////// |
25 | |
26 | /** |
27 | * Base message output class |
28 | * |
29 | * @author Luis Rodrigues |
3b120e46 |
30 | * @license http://www.gnu.org/copyleft/gpl.html GNU Public License |
1d422980 |
31 | * @package |
3b120e46 |
32 | */ |
33 | |
34 | /** |
35 | * Base message output class |
36 | */ |
1d422980 |
37 | abstract class message_output { |
3b120e46 |
38 | public abstract function send_message($message); |
d18b1bbd |
39 | public abstract function process_form($form, &$preferences); |
3b120e46 |
40 | public abstract function load_data(&$preferences, $userid); |
f3d095f8 |
41 | public abstract function config_form($preferences); |
3b120e46 |
42 | } |
43 | |
44 | |
1d422980 |
45 | |