MDL-24441, enforce course max file size
[moodle.git] / message / output / lib.php
blobb485bf2ac0308453b47988f639213ba3e0d9eef0
1 <?php
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 ///////////////////////////////////////////////////////////////////////////
26 /**
27 * Base message output class
29 * @author Luis Rodrigues
30 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
31 * @package
34 /**
35 * Base message output class
37 abstract class message_output {
38 public abstract function send_message($message);
39 public abstract function process_form($form, &$preferences);
40 public abstract function load_data(&$preferences, $userid);
41 public abstract function config_form($preferences);