3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * TinyMCE text editor integration.
23 * @copyright 2009 Petr Skoda (http://skodak.org)
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 defined('MOODLE_INTERNAL') || die();
29 class tinymce_texteditor extends texteditor {
30 /** @var string active version - directory name */
31 public $version = '3.4.2';
33 public function supported_by_browser() {
34 if (check_browser_version('MSIE', 6)) {
37 if (check_browser_version('Gecko', 20030516)) {
40 if (check_browser_version('Safari', 412)) {
43 if (check_browser_version('Chrome', 6)) {
46 if (check_browser_version('Opera', 9)) {
53 public function get_supported_formats() {
54 return array(FORMAT_HTML => FORMAT_HTML);
57 public function get_preferred_format() {
61 public function supports_repositories() {
65 public function head_setup() {
68 public function use_editor($elementid, array $options=null, $fpoptions=null) {
70 if (debugging('', DEBUG_DEVELOPER)) {
71 $PAGE->requires->js('/lib/editor/tinymce/tiny_mce/'.$this->version.'/tiny_mce_src.js');
73 $PAGE->requires->js('/lib/editor/tinymce/tiny_mce/'.$this->version.'/tiny_mce.js');
75 $PAGE->requires->js_init_call('M.editor_tinymce.init_editor', array($elementid, $this->get_init_params($elementid, $options)), true);
77 $PAGE->requires->js_init_call('M.editor_tinymce.init_filepicker', array($elementid, $fpoptions), true);
81 protected function get_init_params($elementid, array $options=null) {
82 global $CFG, $PAGE, $OUTPUT;
84 //TODO: we need to implement user preferences that affect the editor setup too
86 $directionality = get_string('thisdirection', 'langconfig');
87 $strtime = get_string('strftimetime');
88 $strdate = get_string('strftimedaydate');
89 $lang = current_language();
90 $contentcss = $PAGE->theme->editor_css_url()->out(false);
92 $context = empty($options['context']) ? get_context_instance(CONTEXT_SYSTEM) : $options['context'];
94 $xmedia = 'moodlemedia,'; // HQ thinks it should be always on, so it is no matter if it will actually work or not
96 if (!empty($options['legacy'])) {
97 $xmedia = 'moodlemedia,';
99 if (!empty($options['noclean']) or !empty($options['trusted'])) {
103 $filters = filter_get_active_in_context($context);
104 if (array_key_exists('filter/tex', $filters)) {
105 $xdragmath = 'dragmath,';
109 if (array_key_exists('filter/emoticon', $filters)) {
110 $xemoticon = 'moodleemoticon,';
117 'elements' => $elementid,
118 'relative_urls' => false,
119 'document_base_url' => $CFG->httpswwwroot,
120 'content_css' => $contentcss,
122 'directionality' => $directionality,
123 'plugin_insertdate_dateFormat ' => $strdate,
124 'plugin_insertdate_timeFormat ' => $strtime,
125 'theme' => "advanced",
127 'skin_variant' => "silver",
128 'apply_source_formatting' => true,
129 'remove_script_host' => false,
130 'entity_encoding' => "raw",
131 'plugins' => "{$xmedia}advimage,safari,table,style,layer,advhr,advlink,emotions,inlinepopups,searchreplace,paste,directionality,fullscreen,moodlenolink,{$xemoticon}{$xdragmath}nonbreaking,contextmenu,insertdatetime,save,iespell,preview,print,noneditable,visualchars,xhtmlxtras,template,pagebreak,spellchecker",
132 'theme_advanced_font_sizes' => "1,2,3,4,5,6,7",
133 'theme_advanced_layout_manager' => "SimpleLayout",
134 'theme_advanced_toolbar_align' => "left",
135 'theme_advanced_buttons1' => "fontselect,fontsizeselect,formatselect",
136 'theme_advanced_buttons1_add' => "|,undo,redo,|,search,replace,|,fullscreen",
137 'theme_advanced_buttons2' => "bold,italic,underline,strikethrough,sub,sup,|,justifyleft,justifycenter,justifyright",
138 'theme_advanced_buttons2_add' => "|,cleanup,removeformat,pastetext,pasteword,|,forecolor,backcolor,|,ltr,rtl",
139 'theme_advanced_buttons3' => "bullist,numlist,outdent,indent,|,link,unlink,moodlenolink,|,image,{$xemoticon}{$xmedia}{$xdragmath}nonbreaking,charmap",
140 'theme_advanced_buttons3_add' => "table,|,code,spellchecker",
141 'theme_advanced_fonts' => "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",
142 'theme_advanced_resize_horizontal' => true,
143 'theme_advanced_resizing' => true,
144 'theme_advanced_toolbar_location' => "top",
145 'theme_advanced_statusbar_location' => "bottom",
146 'spellchecker_rpc_url' => $CFG->wwwroot."/lib/editor/tinymce/tiny_mce/$this->version/plugins/spellchecker/rpc.php"
150 $manager = get_emoticon_manager();
151 $emoticons = $manager->get_emoticons();
153 // see the TinyMCE plugin moodleemoticon for how the emoticon index is (ab)used :-S
155 foreach ($emoticons as $emoticon) {
156 $imgs[$emoticon->text] = $OUTPUT->render(
157 $manager->prepare_renderable_emoticon($emoticon, array('class' => 'emoticon emoticon-index-'.$index++)));
159 $params['moodleemoticon_emoticons'] = json_encode($imgs);
162 if (empty($CFG->xmlstrictheaders) and (!empty($options['legacy']) or !empty($options['noclean']) or !empty($options['trusted']))) {
163 // now deal somehow with non-standard tags, people scream when we do not make moodle code xtml strict,
164 // but they scream even more when we strip all tags that are not strict :-(
165 $params['valid_elements'] = 'script[src|type],*[*]'; // for some reason the *[*] does not inlcude javascript src attribute MDL-25836
166 $params['invalid_elements'] = '';
169 if (empty($options['legacy'])) {
170 if (isset($options['maxfiles']) and $options['maxfiles'] != 0) {
171 $params['file_browser_callback'] = "M.editor_tinymce.filepicker";