_form; // Define the form $mform->addElement('editor', 'activityeditor', get_string('activityeditor', 'assign'), array('rows' => 10), array('maxfiles' => EDITOR_UNLIMITED_FILES, 'noclean' => true, 'context' => $this->context, 'subdirs' => true)); $mform->addHelpButton('activityeditor', 'activityeditor', 'assign'); $mform->setType('activityeditor', PARAM_RAW); } /** * Process the submission and perform necessary actions * @throws \moodle_exception if an error must be given for a specific reason. */ public function process_submission() { } }