1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
if (!defined('MOODLE_INTERNAL')) {
|
|
|
4 |
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
|
|
5 |
}
|
|
|
6 |
|
|
|
7 |
require_once($CFG->libdir.'/formslib.php');
|
|
|
8 |
|
|
|
9 |
class user_message_form extends moodleform {
|
|
|
10 |
|
|
|
11 |
function definition() {
|
|
|
12 |
$mform =& $this->_form;
|
|
|
13 |
$mform->addElement('header', 'general', get_string('message', 'message'));
|
|
|
14 |
|
|
|
15 |
$mform->addElement('hidden', 'returnurl');
|
|
|
16 |
$mform->setType('returnurl', PARAM_LOCALURL);
|
|
|
17 |
|
|
|
18 |
$mform->addElement('editor', 'messagebody', get_string('messagebody'), null, null);
|
|
|
19 |
$mform->addRule('messagebody', '', 'required', null, 'server');
|
|
|
20 |
|
|
|
21 |
$this->add_action_buttons();
|
|
|
22 |
}
|
|
|
23 |
}
|