mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
36 lines
1017 B
PHP
36 lines
1017 B
PHP
<?php
|
|
/**
|
|
* prints the form to confirm delete a completed
|
|
*
|
|
* @author Andreas Grabs
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
* @package feedback
|
|
*/
|
|
|
|
require_once $CFG->libdir.'/formslib.php';
|
|
|
|
class mod_feedback_delete_completed_form extends moodleform {
|
|
function definition() {
|
|
$mform =& $this->_form;
|
|
|
|
//headline
|
|
//$mform->addElement('header', 'general', '');
|
|
|
|
// hidden elements
|
|
$mform->addElement('hidden', 'id');
|
|
$mform->setType('id', PARAM_INT);
|
|
$mform->addElement('hidden', 'completedid');
|
|
$mform->setType('completeid', PARAM_INT);
|
|
$mform->addElement('hidden', 'do_show');
|
|
$mform->setType('do_show', PARAM_INT);
|
|
$mform->addElement('hidden', 'confirmdelete');
|
|
$mform->setType('confirmdelete', PARAM_INT);
|
|
|
|
//-------------------------------------------------------------------------------
|
|
// buttons
|
|
$this->add_action_buttons(true, get_string('yes'));
|
|
|
|
}
|
|
}
|
|
|