PageRenderTime 55ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/blocks/glossary_random/edit_form.php

https://bitbucket.org/moodle/moodle
PHP | 79 lines | 37 code | 12 blank | 30 comment | 0 complexity | 46ca0b536ebc3f69bcaf0c726062bce4 MD5 | raw file
Possible License(s): Apache-2.0, LGPL-2.1, BSD-3-Clause, MIT, GPL-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. * Form for editing HTML block instances.
  18. *
  19. * @package block_glossary_random
  20. * @copyright 2009 Tim Hunt
  21. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  22. */
  23. /**
  24. * Form for editing Random glossary entry block instances.
  25. *
  26. * @copyright 2009 Tim Hunt
  27. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  28. */
  29. class block_glossary_random_edit_form extends block_edit_form {
  30. protected function specific_definition($mform) {
  31. global $DB;
  32. // Fields for editing HTML block title and contents.
  33. $mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
  34. $mform->addElement('text', 'config_title', get_string('title', 'block_glossary_random'));
  35. $mform->setDefault('config_title', get_string('pluginname','block_glossary_random'));
  36. $mform->setType('config_title', PARAM_TEXT);
  37. // Select glossaries to put in dropdown box ...
  38. $glossaries = $DB->get_records_select_menu('glossary', 'course = ? OR globalglossary = ?', array($this->block->course->id, 1), 'name', 'id,name');
  39. foreach($glossaries as $key => $value) {
  40. $glossaries[$key] = strip_tags(format_string($value, true));
  41. }
  42. $mform->addElement('select', 'config_glossary', get_string('select_glossary', 'block_glossary_random'), $glossaries);
  43. $mform->addElement('text', 'config_refresh', get_string('refresh', 'block_glossary_random'), array('size' => 5));
  44. $mform->setDefault('config_refresh', 0);
  45. $mform->setType('config_refresh', PARAM_INT);
  46. // and select quotetypes to put in dropdown box
  47. $types = array(
  48. 0 => get_string('random','block_glossary_random'),
  49. 1 => get_string('lastmodified','block_glossary_random'),
  50. 2 => get_string('nextone','block_glossary_random'),
  51. 3 => get_string('nextalpha','block_glossary_random')
  52. );
  53. $mform->addElement('select', 'config_type', get_string('type', 'block_glossary_random'), $types);
  54. $mform->addElement('selectyesno', 'config_showconcept', get_string('showconcept', 'block_glossary_random'));
  55. $mform->setDefault('config_showconcept', 1);
  56. $mform->addElement('static', 'footerdescription', '', get_string('whichfooter', 'block_glossary_random'));
  57. $mform->addElement('text', 'config_addentry', get_string('askaddentry', 'block_glossary_random'));
  58. $mform->setDefault('config_addentry', get_string('addentry', 'block_glossary_random'));
  59. $mform->setType('config_addentry', PARAM_NOTAGS);
  60. $mform->addElement('text', 'config_viewglossary', get_string('askviewglossary', 'block_glossary_random'));
  61. $mform->setDefault('config_viewglossary', get_string('viewglossary', 'block_glossary_random'));
  62. $mform->setType('config_viewglossary', PARAM_NOTAGS);
  63. $mform->addElement('text', 'config_invisible', get_string('askinvisible', 'block_glossary_random'));
  64. $mform->setDefault('config_invisible', get_string('invisible', 'block_glossary_random'));
  65. $mform->setType('config_invisible', PARAM_NOTAGS);
  66. }
  67. }