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 16 $mform->addElement('editor', 'messagebody', get_string('messagebody'), null, null); 17 $mform->addRule('messagebody', '', 'required', null, 'server'); 18 19 $this->add_action_buttons(); 20 } 21 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body