1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- defined('MOODLE_INTERNAL') || die();
- require_once($CFG->dirroot.'/course/moodleform_mod.php');
- class mod_colab_mod_form extends moodleform_mod {
-
- public function definition() {
- global $CFG;
- $mform = $this->_form;
-
- $mform->addElement('header', 'general', get_string('general', 'form'));
-
- $mform->addElement('text', 'name', get_string('colabname', 'colab'), array('size' => '64'));
- if (!empty($CFG->formatstringstriptags)) {
- $mform->setType('name', PARAM_TEXT);
- } else {
- $mform->setType('name', PARAM_CLEANHTML);
- }
- $mform->addRule('name', null, 'required', null, 'client');
- $mform->addRule('name', get_string('maximumchars', '', 255), 'maxlength', 255, 'client');
- $mform->addHelpButton('name', 'colabname', 'colab');
-
- if ($CFG->branch >= 29) {
- $this->standard_intro_elements();
- } else {
- $this->add_intro_editor();
- }
-
-
- $mform->addElement('static', 'label1', 'colabsettings', get_string('colabsettings', 'colab'));
- $mform->addElement('header', 'colabfieldset', get_string('colabfieldset', 'colab'));
-
- $this->standard_grading_coursemodule_elements();
-
- $this->standard_coursemodule_elements();
-
- $this->add_action_buttons();
- }
- }
|