27d1a27c21
AMOS BEGIN HLP forcepasswordchange.html,[forcepasswordchange_help,core] HLP interestslist.html,[interestslist_help,core] HLP newpassword.html,[newpassword_help,core] HLP permissions.html,[permissions_help,core_role] HLP picture.html,[newpicture_help,core] HLP picture.html,[newpicture_help,core_group] HLP roles.html,[roles_help,core_role] AMOS END
18 lines
453 B
PHP
18 lines
453 B
PHP
<?php
|
|
|
|
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();
|
|
}
|
|
}
|