2 require_once ($CFG->dirroot
.'/course/moodleform_mod.php');
4 class mod_label_mod_form
extends moodleform_mod
{
6 function definition() {
8 $mform =& $this->_form
;
10 $mform->addElement('htmleditor', 'content', get_string('labeltext', 'label'), array('size'=>'64'));
11 $mform->setType('content', PARAM_RAW
);
12 $mform->addRule('content', get_string('required'), 'required', null, 'client');
13 $mform->setHelpButton('content', array('questions', 'richtext'), false, 'editorhelpbutton');
15 $this->standard_hidden_coursemodule_elements();
17 $mform->addElement('modvisible', 'visible', get_string('visible'));
19 //-------------------------------------------------------------------------------
21 $this->add_action_buttons();