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.
   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   * TinyMCE admin settings
  19   *
  20   * @package    editor_tinymce
  21   * @copyright  2009 Petr Skoda (http://skodak.org)
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  defined('MOODLE_INTERNAL') || die;
  26  
  27  $ADMIN->add('editorsettings', new admin_category('editortinymce', $editor->displayname, $editor->is_enabled() === false));
  28  
  29  $settings = new admin_settingpage('editorsettingstinymce', new lang_string('settings', 'editor_tinymce'));
  30  if ($ADMIN->fulltree) {
  31      require_once (__DIR__.'/adminlib.php');
  32      $settings->add(new tiynce_subplugins_settings());
  33      $settings->add(new admin_setting_heading('tinymcegeneralheader', new lang_string('settings'), ''));
  34      $default = "wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image
  35  
  36  undo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl
  37  
  38  fontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen";
  39      $settings->add(new admin_setting_configtextarea('editor_tinymce/customtoolbar',
  40          get_string('customtoolbar', 'editor_tinymce'), get_string('customtoolbar_desc', 'editor_tinymce', 'http://www.tinymce.com/wiki.php/TinyMCE3x:Buttons/controls'), $default, PARAM_RAW, 100, 8));
  41      $settings->add(new admin_setting_configtextarea('editor_tinymce/fontselectlist',
  42          get_string('fontselectlist', 'editor_tinymce'), '',
  43          'Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings', PARAM_RAW, 100, 8));
  44      $settings->add(new editor_tinymce_json_setting_textarea('editor_tinymce/customconfig',
  45          get_string('customconfig', 'editor_tinymce'), get_string('customconfig_desc', 'editor_tinymce'), '', PARAM_RAW, 100, 8));
  46  }
  47  $ADMIN->add('editortinymce', $settings);
  48  unset($settings);
  49  
  50  foreach (core_plugin_manager::instance()->get_plugins_of_type('tinymce') as $plugin) {
  51      /** @var \editor_tinymce\plugininfo\tinymce $plugin */
  52      $plugin->load_settings($ADMIN, 'editortinymce', $hassiteconfig);
  53  }
  54  
  55  // TinyMCE does not have standard settings page.
  56  $settings = null;