. /** * prints the form to confirm delete a item * * @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_item_form extends moodleform { public function definition() { $mform =& $this->_form; // hidden elements $mform->addElement('hidden', 'id'); $mform->setType('id', PARAM_INT); $mform->addElement('hidden', 'deleteitem'); $mform->setType('deleteitem', PARAM_INT); $mform->addElement('hidden', 'confirmdelete'); $mform->setType('confirmdelete', PARAM_INT); //------------------------------------------------------------------------------- // buttons $this->add_action_buttons(true, get_string('yes')); } }