/mod/feedback/delete_item_form.php

https://bitbucket.org/synergylearning/campusconnect · PHP · 50 lines · 17 code · 8 blank · 25 comment · 1 complexity · 42d0e5db88a24d01d59dcc275395647d MD5 · raw file

  1. <?php
  2. // This file is part of Moodle - http://moodle.org/
  3. //
  4. // Moodle is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // Moodle is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * prints the form to confirm delete a completed
  18. *
  19. * @author Andreas Grabs
  20. * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
  21. * @package feedback
  22. */
  23. //It must be included from a Moodle page
  24. if (!defined('MOODLE_INTERNAL')) {
  25. die('Direct access to this script is forbidden.');
  26. }
  27. require_once($CFG->libdir.'/formslib.php');
  28. class mod_feedback_delete_item_form extends moodleform {
  29. public function definition() {
  30. $mform =& $this->_form;
  31. // hidden elements
  32. $mform->addElement('hidden', 'id');
  33. $mform->setType('id', PARAM_INT);
  34. $mform->addElement('hidden', 'deleteitem');
  35. $mform->setType('deleteitem', PARAM_INT);
  36. $mform->addElement('hidden', 'confirmdelete');
  37. $mform->setType('confirmdelete', PARAM_INT);
  38. //-------------------------------------------------------------------------------
  39. // buttons
  40. $this->add_action_buttons(true, get_string('yes'));
  41. }
  42. }