. /** * prints the form to confirm delete a submit * * @author Andreas Grabs * @license http://www.gnu.org/copyleft/gpl.html GNU Public License * @package apply */ //It must be included from a Moodle page if (!defined('MOODLE_INTERNAL')) { die('Direct access to this script is forbidden.'); } require_once($CFG->libdir.'/formslib.php'); class mod_apply_delete_submit_form extends moodleform { public function definition() { $mform =& $this->_form; // hidden elements $mform->addElement('hidden', 'id'); $mform->setType('id', PARAM_INT); $mform->addElement('hidden', 'submit_id'); $mform->setType('submit_id', PARAM_INT); $mform->addElement('hidden', 'do_show'); $mform->setType('do_show', PARAM_INT); $mform->addElement('hidden', 'confirmdelete'); $mform->setType('confirmdelete', PARAM_INT); $mform->addElement('hidden', 'action'); $mform->setType('action', PARAM_ALPHAEXT); //------------------------------------------------------------------------------- // buttons $this->add_action_buttons(true, get_string('yes_button','apply')); } }