. /** * @package plagiarism_pchkorg * @category plagiarism * @copyright PlagiarismCheck.org, https://plagiarismcheck.org/ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once($CFG->libdir . '/formslib.php'); /** * Class send_text_form */ class send_text_form extends moodleform { /** * @throws coding_exception */ public function definition() { $mform = $this->_form; // Don't forget the underscore! $mform->addElement('hidden', 'fileid', ''); $mform->setType('fileid', PARAM_INT); $mform->addElement('hidden', 'cmid', ''); $mform->setType('cmid', PARAM_INT); $this->add_action_buttons(false, get_string('pchkorg_submit', 'plagiarism_pchkorg')); } }