You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
3.1 KiB
56 lines
3.1 KiB
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* TinyMCE admin settings
|
|
*
|
|
* @package editor_tinymce
|
|
* @copyright 2009 Petr Skoda (http://skodak.org)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
$ADMIN->add('editorsettings', new admin_category('editortinymce', $editor->displayname, $editor->is_enabled() === false));
|
|
|
|
$settings = new admin_settingpage('editorsettingstinymce', new lang_string('settings', 'editor_tinymce'));
|
|
if ($ADMIN->fulltree) {
|
|
require_once(__DIR__.'/adminlib.php');
|
|
$settings->add(new tiynce_subplugins_settings());
|
|
$settings->add(new admin_setting_heading('tinymcegeneralheader', new lang_string('settings'), ''));
|
|
$default = "wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image
|
|
|
|
undo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl
|
|
|
|
fontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen";
|
|
$settings->add(new admin_setting_configtextarea('editor_tinymce/customtoolbar',
|
|
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));
|
|
$settings->add(new admin_setting_configtextarea('editor_tinymce/fontselectlist',
|
|
get_string('fontselectlist', 'editor_tinymce'), '',
|
|
'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));
|
|
$settings->add(new editor_tinymce_json_setting_textarea('editor_tinymce/customconfig',
|
|
get_string('customconfig', 'editor_tinymce'), get_string('customconfig_desc', 'editor_tinymce'), '', PARAM_RAW, 100, 8));
|
|
}
|
|
$ADMIN->add('editortinymce', $settings);
|
|
unset($settings);
|
|
|
|
foreach (core_plugin_manager::instance()->get_plugins_of_type('tinymce') as $plugin) {
|
|
/** @var \editor_tinymce\plugininfo\tinymce $plugin */
|
|
$plugin->load_settings($ADMIN, 'editortinymce', $hassiteconfig);
|
|
}
|
|
|
|
// TinyMCE does not have standard settings page.
|
|
$settings = null;
|
|
|