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 310 and 311] [Versions 39 and 311]

   1  <?php
   2  
   3  defined('MOODLE_INTERNAL') || die;
   4  
   5  if ($ADMIN->fulltree) {
   6      require_once($CFG->dirroot.'/mod/glossary/lib.php');
   7  
   8      $settings->add(new admin_setting_heading('glossary_normal_header', get_string('glossaryleveldefaultsettings', 'glossary'), ''));
   9  
  10      $settings->add(new admin_setting_configtext('glossary_entbypage', get_string('entbypage', 'glossary'),
  11                         get_string('entbypage', 'glossary'), 10, PARAM_INT));
  12  
  13  
  14      $settings->add(new admin_setting_configcheckbox('glossary_dupentries', get_string('allowduplicatedentries', 'glossary'),
  15                         get_string('cnfallowdupentries', 'glossary'), 0));
  16  
  17      $settings->add(new admin_setting_configcheckbox('glossary_allowcomments', get_string('allowcomments', 'glossary'),
  18                         get_string('cnfallowcomments', 'glossary'), 0));
  19  
  20      $settings->add(new admin_setting_configcheckbox('glossary_linkbydefault', get_string('usedynalink', 'glossary'),
  21                         get_string('cnflinkglossaries', 'glossary'), 1));
  22  
  23      $settings->add(new admin_setting_configcheckbox('glossary_defaultapproval', get_string('defaultapproval', 'glossary'),
  24                         get_string('cnfapprovalstatus', 'glossary'), 1));
  25  
  26  
  27      if (empty($CFG->enablerssfeeds)) {
  28          $options = array(0 => get_string('rssglobaldisabled', 'admin'));
  29          $str = get_string('configenablerssfeeds', 'glossary').'<br />'.get_string('configenablerssfeedsdisabled2', 'admin');
  30  
  31      } else {
  32          $options = array(0=>get_string('no'), 1=>get_string('yes'));
  33          $str = get_string('configenablerssfeeds', 'glossary');
  34      }
  35      $settings->add(new admin_setting_configselect('glossary_enablerssfeeds', get_string('enablerssfeeds', 'admin'),
  36                         $str, 0, $options));
  37  
  38  
  39      $settings->add(new admin_setting_heading('glossary_levdev_header', get_string('entryleveldefaultsettings', 'glossary'), ''));
  40  
  41      $settings->add(new admin_setting_configcheckbox('glossary_linkentries', get_string('usedynalink', 'glossary'),
  42                         get_string('cnflinkentry', 'glossary'), 0));
  43  
  44      $settings->add(new admin_setting_configcheckbox('glossary_casesensitive', get_string('casesensitive', 'glossary'),
  45                         get_string('cnfcasesensitive', 'glossary'), 0));
  46  
  47      $settings->add(new admin_setting_configcheckbox('glossary_fullmatch', get_string('fullmatch', 'glossary'),
  48                         get_string('cnffullmatch', 'glossary'), 0));
  49  
  50      // This is unfortunately necessary to ensure that the glossary_formats table is populated and up to date.
  51      // Ensure the table is in sync with what display formats are available in code.
  52      glossary_get_available_formats();
  53  
  54      $settings->add(new mod_glossary_admin_setting_display_formats());
  55  }