You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
593 B
22 lines
593 B
2 years ago
|
<?php
|
||
|
|
||
|
if (!defined('MOODLE_INTERNAL')) {
|
||
|
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
||
|
}
|
||
|
|
||
|
require_once($CFG->libdir.'/formslib.php');
|
||
|
|
||
|
class user_message_form extends moodleform {
|
||
|
|
||
|
function definition() {
|
||
|
$mform =& $this->_form;
|
||
|
$mform->addElement('header', 'general', get_string('message', 'message'));
|
||
|
|
||
|
|
||
|
$mform->addElement('editor', 'messagebody', get_string('messagebody'), null, null);
|
||
|
$mform->addRule('messagebody', '', 'required', null, 'server');
|
||
|
|
||
|
$this->add_action_buttons();
|
||
|
}
|
||
|
}
|