PageRenderTime 38ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/grade/import/key_form.php

https://bitbucket.org/synergylearning/campusconnect
PHP | 56 lines | 22 code | 12 blank | 22 comment | 1 complexity | 140b8cdffcd97f6ca900f6a25ea6dbda MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception, LGPL-3.0, GPL-3.0, LGPL-2.1, Apache-2.0, BSD-3-Clause, AGPL-3.0
  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. * Grade import key management form.
  18. *
  19. * @package moodlecore
  20. * @copyright 2008 Petr Skoda
  21. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  22. */
  23. if (!defined('MOODLE_INTERNAL')) {
  24. die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
  25. }
  26. require_once($CFG->dirroot.'/lib/formslib.php');
  27. class key_form extends moodleform {
  28. // Define the form
  29. function definition () {
  30. global $USER, $CFG, $COURSE;
  31. $mform =& $this->_form;
  32. $mform->addElement('static', 'value', get_string('keyvalue', 'userkey'));
  33. $mform->addElement('text', 'iprestriction', get_string('keyiprestriction', 'userkey'), array('size'=>80));
  34. $mform->addElement('date_time_selector', 'validuntil', get_string('keyvaliduntil', 'userkey'), array('optional'=>true));
  35. $mform->addHelpButton('iprestriction', 'keyiprestriction', 'userkey');
  36. $mform->addHelpButton('validuntil', 'keyvaliduntil', 'userkey');
  37. $mform->setType('iprestriction', PARAM_RAW_TRIMMED);
  38. $mform->addElement('hidden','id');
  39. $mform->setType('id', PARAM_INT);
  40. $mform->addElement('hidden','courseid');
  41. $mform->setType('courseid', PARAM_INT);
  42. $this->add_action_buttons();
  43. }
  44. }