Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 402] [Versions 311 and 403]

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