3 declare(strict_types=1);
34 protected string $mode =
'textareas';
67 $this->contextMenuItems = [
'cut',
'copy',
'paste',
'link',
'unlink',
'ilimgupload',
'imagetools',
'table'];
84 if (!$this->client_init->readVariable(
'tinymce',
'use_advanced_img_mng')) {
85 parent::addPlugin(
'ilimgupload');
87 parent::removePlugin(
'ibrowser');
88 parent::removePlugin(
'image');
97 parent::addPlugin(
'ibrowser');
98 parent::removePlugin(
'ilimgupload');
110 if (!in_array(
'img', $tags)) {
112 parent::removePlugin(
'ilimgupload');
113 parent::removePlugin(
'ibrowser');
114 parent::removePlugin(
'image');
130 if (!$this->client_init->readVariable(
'tinymce',
'use_advanced_img_mng')) {
131 parent::removePlugin(
'ilimgupload');
134 parent::removePlugin(
'ibrowser');
141 if (self::ILIAS_IMG_MANAGER_PLUGIN === $a_plugin_name) {
144 parent::addPlugin($a_plugin_name);
150 if (self::ILIAS_IMG_MANAGER_PLUGIN === $a_plugin_name) {
153 parent::removePlugin($a_plugin_name);
160 string $a_module =
'',
161 bool $allowFormElements =
false,
162 ?
string $cfg_template = null,
163 bool $hide_switch =
false 169 if ($this->browser->isMobile()) {
180 ($cfg_template ??
"tpl.tinymce.js"),
188 if ($allowFormElements) {
208 'TXT_ALLOWED_FILE_EXTENSIONS',
209 $lng->
txt(
'file_allowed_suffixes') .
' ' .
210 implode(
', ', array_map(
static function (
string $value):
string {
220 $tpl->
setVariable(
'BUTTONS_1', self::removeRedundantSeparators($buttons_1));
221 $tpl->
setVariable(
'BUTTONS_2', self::removeRedundantSeparators($buttons_2));
222 $tpl->
setVariable(
'BUTTONS_3', self::removeRedundantSeparators($buttons_3));
224 $tpl->
setVariable(
'CONTEXT_MENU_ITEMS', implode(
' ', $this->contextMenuItems));
229 'STYLESHEET_LOCATION',
240 if (!self::$renderedToGlobalTemplate) {
241 $this->tpl->addJavaScript(
'node_modules/tinymce/tinymce.js');
242 $this->tpl->addOnLoadCode(
$tpl->
get());
243 self::$renderedToGlobalTemplate =
true;
251 $tpl->
touchBlock(
'remove_img_context_menu_item');
260 $this->contextMenuItems[] = $item;
266 $this->contextMenuItems = [];
273 $tpl =
new ilTemplate(
'tpl.tinymce.js',
true,
true,
'Services/RTE');
291 $tpl->
setVariable(
'BUTTONS_1', self::removeRedundantSeparators($buttons_1));
292 $tpl->
setVariable(
'BUTTONS_2', self::removeRedundantSeparators($buttons_2));
293 $tpl->
setVariable(
'BUTTONS_3', self::removeRedundantSeparators($buttons_3));
295 $tpl->
setVariable(
'CONTEXT_MENU_ITEMS', implode(
' ', $this->contextMenuItems));
308 if (!self::$renderedToGlobalTemplate) {
309 $this->tpl->addJavaScript(
'node_modules/tinymce/tinymce.js');
310 $this->tpl->addOnLoadCode(
$tpl->
get());
311 self::$renderedToGlobalTemplate =
true;
317 $validtags = [
"strong",
"em",
"p",
"br",
"div",
"span"];
318 $buttontags = [
'strong',
'em'];
320 $template =
new ilTemplate(
'tpl.usereditor.js',
true,
true,
'Services/RTE');
322 $template->setCurrentBlock(
'tinymce');
324 $template->setVariable(
'SELECTOR', $editor_selector);
325 $template->setVariable(
'BLOCKFORMATS',
'');
328 $template->setVariable(
'STYLE_SELECT',
',styleselect');
332 $template->setVariable(
333 'STYLESHEET_LOCATION',
337 $template->parseCurrentBlock();
339 $this->tpl->addJavaScript(
'node_modules/tinymce/tinymce.js');
340 $this->tpl->addOnLoadCode($template->get());
351 $btns = explode(
' ', $btns);
356 return implode(
' ', $btns);
361 $this->styleselect = $a_styleselect;
377 if (in_array(
'p', $a_html_tags)) {
378 $blockformats[] =
'p';
380 if (in_array(
'div', $a_html_tags)) {
381 $blockformats[] =
'div';
383 if (in_array(
'pre', $a_html_tags)) {
384 $blockformats[] =
'pre';
386 if (in_array(
'code', $a_html_tags)) {
387 $blockformats[] =
'code';
389 if (in_array(
'h1', $a_html_tags)) {
390 $blockformats[] =
'h1';
392 if (in_array(
'h2', $a_html_tags)) {
393 $blockformats[] =
'h2';
395 if (in_array(
'h3', $a_html_tags)) {
396 $blockformats[] =
'h3';
398 if (in_array(
'h4', $a_html_tags)) {
399 $blockformats[] =
'h4';
401 if (in_array(
'h5', $a_html_tags)) {
402 $blockformats[] =
'h5';
404 if (in_array(
'h6', $a_html_tags)) {
405 $blockformats[] =
'h6';
407 if (count($blockformats)) {
408 return implode(
',', $blockformats);
421 $theme_advanced_buttons = [];
423 if ($a_buttons_section === 1) {
424 if (in_array(
'strong', $a_html_tags)) {
425 $theme_advanced_buttons[] =
'bold';
427 if (in_array(
'em', $a_html_tags)) {
428 $theme_advanced_buttons[] =
'italic';
430 if (in_array(
'u', $a_html_tags)) {
431 $theme_advanced_buttons[] =
'underline';
433 if (in_array(
'strike', $a_html_tags)) {
434 $theme_advanced_buttons[] =
'strikethrough';
436 if (count($theme_advanced_buttons)) {
437 $theme_advanced_buttons[] =
'|';
439 if (in_array(
'p', $a_html_tags)) {
440 $theme_advanced_buttons[] =
'alignleft';
441 $theme_advanced_buttons[] =
'aligncenter';
442 $theme_advanced_buttons[] =
'alignright';
443 $theme_advanced_buttons[] =
'alignjustify';
444 $theme_advanced_buttons[] =
'|';
447 $theme_advanced_buttons[] =
'formatselect';
449 if (in_array(
'hr', $a_html_tags)) {
450 $theme_advanced_buttons[] =
'hr';
452 $theme_advanced_buttons[] =
'removeformat';
453 $theme_advanced_buttons[] =
'|';
454 if (in_array(
'sub', $a_html_tags)) {
455 $theme_advanced_buttons[] =
'subscript';
457 if (in_array(
'sup', $a_html_tags)) {
458 $theme_advanced_buttons[] =
'superscript';
460 if (in_array(
'font', $a_html_tags)) {
461 $theme_advanced_buttons[] =
'fontselect';
462 $theme_advanced_buttons[] =
'fontsizeselect';
464 $theme_advanced_buttons[] =
'charmap';
465 if ((in_array(
'ol', $a_html_tags)) && (in_array(
'li', $a_html_tags))) {
466 $theme_advanced_buttons[] =
'bullist';
468 if ((in_array(
'ul', $a_html_tags)) && (in_array(
'li', $a_html_tags))) {
469 $theme_advanced_buttons[] =
'numlist';
471 $theme_advanced_buttons[] =
'|';
472 if (in_array(
'cite', $a_html_tags)) {
473 $theme_advanced_buttons[] =
'blockquote';
475 if (in_array(
'abbr', $a_html_tags)) {
476 $theme_advanced_buttons[] =
'abbr';
478 if (in_array(
'acronym', $a_html_tags)) {
479 $theme_advanced_buttons[] =
'acronym';
481 if (in_array(
'del', $a_html_tags)) {
482 $theme_advanced_buttons[] =
'del';
484 if (in_array(
'ins', $a_html_tags)) {
485 $theme_advanced_buttons[] =
'ins';
487 if (in_array(
'blockquote', $a_html_tags)) {
488 $theme_advanced_buttons[] =
'indent';
489 $theme_advanced_buttons[] =
'outdent';
491 if (in_array(
'img', $a_html_tags)) {
493 $theme_advanced_buttons[] =
'image';
494 $theme_advanced_buttons[] =
'ibrowser';
495 $theme_advanced_buttons[] =
'ilimgupload';
497 if (in_array(
'a', $a_html_tags)) {
498 $theme_advanced_buttons[] =
'link';
499 $theme_advanced_buttons[] =
'unlink';
500 $theme_advanced_buttons[] =
'anchor';
502 $theme_advanced_buttons[] =
'|';
503 $theme_advanced_buttons[] =
'undo';
504 $theme_advanced_buttons[] =
'redo';
506 if (is_array($this->buttons) && count($this->buttons)) {
507 $theme_advanced_buttons[] =
'|';
508 foreach ($this->buttons as $button) {
509 $theme_advanced_buttons[] = $button;
513 $theme_advanced_buttons[] =
'code';
514 $theme_advanced_buttons[] =
'fullscreen';
517 $theme_advanced_buttons[] =
'pasteword';
518 } elseif ($a_buttons_section === 2) {
519 $theme_advanced_buttons[] =
'cut';
520 $theme_advanced_buttons[] =
'copy';
521 $theme_advanced_buttons[] =
'paste';
522 $theme_advanced_buttons[] =
'pastetext';
528 if (is_array($remove_buttons)) {
529 foreach ($remove_buttons as $buttontext) {
530 if ((
$res = array_search($buttontext, $theme_advanced_buttons,
true)) !==
false) {
531 unset($theme_advanced_buttons[
$res]);
536 return implode(
' ', $theme_advanced_buttons);
545 $theme_advanced_buttons = [];
546 if (in_array(
'strong', $a_html_tags)) {
547 $theme_advanced_buttons[] =
'bold';
549 if (in_array(
'em', $a_html_tags)) {
550 $theme_advanced_buttons[] =
'italic';
552 if (in_array(
'u', $a_html_tags)) {
553 $theme_advanced_buttons[] =
'underline';
555 if (in_array(
'strike', $a_html_tags)) {
556 $theme_advanced_buttons[] =
'strikethrough';
558 if (in_array(
'p', $a_html_tags)) {
559 $theme_advanced_buttons[] =
'alignleft';
560 $theme_advanced_buttons[] =
'aligncenter';
561 $theme_advanced_buttons[] =
'alignright';
562 $theme_advanced_buttons[] =
'alignjustify';
565 $theme_advanced_buttons[] =
'formatselect';
567 if (in_array(
'hr', $a_html_tags)) {
568 $theme_advanced_buttons[] =
'hr';
570 if (in_array(
'sub', $a_html_tags)) {
571 $theme_advanced_buttons[] =
'subscript';
573 if (in_array(
'sup', $a_html_tags)) {
574 $theme_advanced_buttons[] =
'superscript';
576 if (in_array(
'font', $a_html_tags)) {
577 $theme_advanced_buttons[] =
'fontselect';
578 $theme_advanced_buttons[] =
'fontsizeselect';
580 if ((in_array(
'ol', $a_html_tags)) && (in_array(
'li', $a_html_tags))) {
581 $theme_advanced_buttons[] =
'bullist';
583 if ((in_array(
'ul', $a_html_tags)) && (in_array(
'li', $a_html_tags))) {
584 $theme_advanced_buttons[] =
'numlist';
586 if (in_array(
'cite', $a_html_tags)) {
587 $theme_advanced_buttons[] =
'blockquote';
589 if (in_array(
'abbr', $a_html_tags)) {
590 $theme_advanced_buttons[] =
'abbr';
592 if (in_array(
'acronym', $a_html_tags)) {
593 $theme_advanced_buttons[] =
'acronym';
595 if (in_array(
'del', $a_html_tags)) {
596 $theme_advanced_buttons[] =
'del';
598 if (in_array(
'ins', $a_html_tags)) {
599 $theme_advanced_buttons[] =
'ins';
601 if (in_array(
'blockquote', $a_html_tags)) {
602 $theme_advanced_buttons[] =
'indent';
603 $theme_advanced_buttons[] =
'outdent';
605 if (in_array(
'img', $a_html_tags)) {
607 $theme_advanced_buttons[] =
'image';
608 $theme_advanced_buttons[] =
'ibrowser';
609 $theme_advanced_buttons[] =
'ilimgupload';
611 if (in_array(
'a', $a_html_tags)) {
612 $theme_advanced_buttons[] =
'link';
613 $theme_advanced_buttons[] =
'unlink';
614 $theme_advanced_buttons[] =
'anchor';
618 if (is_array($remove_buttons)) {
619 foreach ($remove_buttons as $buttontext) {
620 if ((
$res = array_search($buttontext, $theme_advanced_buttons,
true)) !==
false) {
621 unset($theme_advanced_buttons[
$res]);
626 return implode(
' ', $theme_advanced_buttons);
635 $theme_advanced_buttons = [];
637 in_array(
'table', $a_html_tags,
true) &&
638 in_array(
'tr', $a_html_tags,
true) &&
639 in_array(
'td', $a_html_tags,
true)
641 $theme_advanced_buttons[] =
'table';
645 if (is_array($remove_buttons)) {
646 foreach ($remove_buttons as $buttontext) {
647 if ((
$res = array_search($buttontext, $theme_advanced_buttons,
true)) !==
false) {
648 unset($theme_advanced_buttons[
$res]);
653 return implode(
',', $theme_advanced_buttons);
678 if (is_file(
"./node_modules/tinymce/langs/$langtiny.js")) {
691 $valid_elements = [];
693 foreach ($a_html_tags as $tag) {
696 $valid_elements[] =
'a[accesskey|charset|class|coords|dir<ltr?rtl|href|hreflang|id|lang|name' 697 .
'|onblur|onclick|ondblclick|onfocus|onkeydown|onkeypress|onkeyup' 698 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|rel|rev' 699 .
'|shape<circle?default?poly?rect|style|tabindex|title|target|type]';
702 $valid_elements[] =
'abbr[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 703 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 707 $valid_elements[] =
'acronym[class|dir<ltr?rtl|id|id|lang|onclick|ondblclick|onkeydown|onkeypress' 708 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 712 $valid_elements[] =
'address[class|align|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 713 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 714 .
'|onmouseup|style|title]';
717 $valid_elements[] =
'applet[align<bottom?left?middle?right?top|alt|archive|class|code|codebase' 718 .
'|height|hspace|id|name|object|style|title|vspace|width]';
721 $valid_elements[] =
'area[accesskey|alt|class|coords|dir<ltr?rtl|href|id|lang|nohref<nohref' 722 .
'|onblur|onclick|ondblclick|onfocus|onkeydown|onkeypress|onkeyup' 723 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup' 724 .
'|shape<circle?default?poly?rect|style|tabindex|title|target]';
727 $valid_elements[] =
'base[href|target]';
730 $valid_elements[] =
'basefont[color|face|id|size]';
733 $valid_elements[] =
'bdo[class|dir<ltr?rtl|id|lang|style|title]';
736 $valid_elements[] =
'big[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 737 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 741 $valid_elements[] =
'blockquote[dir|style|cite|class|dir<ltr?rtl|id|lang|onclick|ondblclick' 742 .
'|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout' 743 .
'|onmouseover|onmouseup|style|title]';
746 $valid_elements[] =
'body[alink|background|bgcolor|class|dir<ltr?rtl|id|lang|link|onclick' 747 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onload|onmousedown|onmousemove' 748 .
'|onmouseout|onmouseover|onmouseup|onunload|style|title|text|vlink]';
751 $valid_elements[] =
'br[class|clear<all?left?none?right|id|style|title]';
754 $valid_elements[] =
'button[accesskey|class|dir<ltr?rtl|disabled<disabled|id|lang|name|onblur' 755 .
'|onclick|ondblclick|onfocus|onkeydown|onkeypress|onkeyup|onmousedown' 756 .
'|onmousemove|onmouseout|onmouseover|onmouseup|style|tabindex|title|type' 760 $valid_elements[] =
'caption[align<bottom?left?right?top|class|dir<ltr?rtl|id|lang|onclick' 761 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 762 .
'|onmouseout|onmouseover|onmouseup|style|title]';
765 $valid_elements[] =
'center[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 766 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 770 $valid_elements[] =
'cite[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 771 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 775 $valid_elements[] =
'code[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 776 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 780 $valid_elements[] =
'col[align<center?char?justify?left?right|char|charoff|class|dir<ltr?rtl|id' 781 .
'|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown' 782 .
'|onmousemove|onmouseout|onmouseover|onmouseup|span|style|title' 783 .
'|valign<baseline?bottom?middle?top|width]';
786 $valid_elements[] =
'colgroup[align<center?char?justify?left?right|char|charoff|class|dir<ltr?rtl' 787 .
'|id|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown' 788 .
'|onmousemove|onmouseout|onmouseover|onmouseup|span|style|title' 789 .
'|valign<baseline?bottom?middle?top|width]';
792 $valid_elements[] =
'dd[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup' 793 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style|title]';
796 $valid_elements[] =
'del[cite|class|datetime|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 797 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 798 .
'|onmouseup|style|title]';
801 $valid_elements[] =
'dfn[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 802 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 806 $valid_elements[] =
'dir[class|compact<compact|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 807 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 808 .
'|onmouseup|style|title]';
811 $valid_elements[] =
'div[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 812 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 813 .
'|onmouseout|onmouseover|onmouseup|style|title]';
816 $valid_elements[] =
'dl[class|compact<compact|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 817 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 818 .
'|onmouseup|style|title]';
821 $valid_elements[] =
'dt[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup' 822 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style|title]';
825 $valid_elements[] =
'em/i[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 826 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 830 $valid_elements[] =
'fieldset[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 831 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 835 $valid_elements[] =
'font[class|color|dir<ltr?rtl|face|id|lang|size|style|title]';
838 $valid_elements[] =
'form[accept|accept-charset|action|class|dir<ltr?rtl|enctype|id|lang' 839 .
'|method<get?post|name|onclick|ondblclick|onkeydown|onkeypress|onkeyup' 840 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|onreset|onsubmit' 841 .
'|style|title|target]';
844 $valid_elements[] =
'frame[class|frameborder|id|longdesc|marginheight|marginwidth|name' 845 .
'|noresize<noresize|scrolling<auto?no?yes|src|style|title]';
848 $valid_elements[] =
'frameset[class|cols|id|onload|onunload|rows|style|title]';
851 $valid_elements[] =
'h1[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 852 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 853 .
'|onmouseout|onmouseover|onmouseup|style|title]';
856 $valid_elements[] =
'h2[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 857 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 858 .
'|onmouseout|onmouseover|onmouseup|style|title]';
861 $valid_elements[] =
'h3[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 862 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 863 .
'|onmouseout|onmouseover|onmouseup|style|title]';
866 $valid_elements[] =
'h4[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 867 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 868 .
'|onmouseout|onmouseover|onmouseup|style|title]';
871 $valid_elements[] =
'h5[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 872 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 873 .
'|onmouseout|onmouseover|onmouseup|style|title]';
876 $valid_elements[] =
'h6[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 877 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 878 .
'|onmouseout|onmouseover|onmouseup|style|title]';
881 $valid_elements[] =
'head[dir<ltr?rtl|lang|profile]';
884 $valid_elements[] =
'hr[align<center?left?right|class|dir<ltr?rtl|id|lang|noshade<noshade|onclick' 885 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 886 .
'|onmouseout|onmouseover|onmouseup|size|style|title|width]';
889 $valid_elements[] =
'html[dir<ltr?rtl|lang|version]';
892 $valid_elements[] =
'iframe[align<bottom?left?middle?right?top|class|frameborder|height|id' 893 .
'|longdesc|marginheight|marginwidth|name|scrolling<auto?no?yes|src|style' 897 $valid_elements[] =
'img[align<bottom?left?middle?right?top|alt|border|class|dir<ltr?rtl|height' 898 .
'|hspace|id|ismap<ismap|lang|longdesc|name|onclick|ondblclick|onkeydown' 899 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 900 .
'|onmouseup|src|style|title|usemap|vspace|width]';
903 $valid_elements[] =
'input[accept|accesskey|align<bottom?left?middle?right?top|alt' 904 .
'|checked<checked|class|dir<ltr?rtl|disabled<disabled|id|ismap<ismap|lang' 905 .
'|maxlength|name|onblur|onclick|ondblclick|onfocus|onkeydown|onkeypress' 906 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|onselect' 907 .
'|readonly<readonly|size|src|style|tabindex|title' 908 .
'|type<button?checkbox?file?hidden?image?password?radio?reset?submit?text' 912 $valid_elements[] =
'ins[cite|class|datetime|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 913 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 914 .
'|onmouseup|style|title]';
917 $valid_elements[] =
'isindex[class|dir<ltr?rtl|id|lang|prompt|style|title]';
920 $valid_elements[] =
'kbd[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 921 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 925 $valid_elements[] =
'label[accesskey|class|dir<ltr?rtl|for|id|lang|onblur|onclick|ondblclick' 926 .
'|onfocus|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout' 927 .
'|onmouseover|onmouseup|style|title]';
930 $valid_elements[] =
'legend[align<bottom?left?right?top|accesskey|class|dir<ltr?rtl|id|lang' 931 .
'|onclick|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 932 .
'|onmouseout|onmouseover|onmouseup|style|title]';
935 $valid_elements[] =
'li[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup' 936 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style|title|type' 940 $valid_elements[] =
'link[charset|class|dir<ltr?rtl|href|hreflang|id|lang|media|onclick' 941 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 942 .
'|onmouseout|onmouseover|onmouseup|rel|rev|style|title|target|type]';
945 $valid_elements[] =
'map[class|dir<ltr?rtl|id|lang|name|onclick|ondblclick|onkeydown|onkeypress' 946 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 950 $valid_elements[] =
'menu[class|compact<compact|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 951 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 952 .
'|onmouseup|style|title]';
955 $valid_elements[] =
'meta[content|dir<ltr?rtl|http-equiv|lang|name|scheme]';
958 $valid_elements[] =
'noframes[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 959 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 963 $valid_elements[] =
'noscript[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 964 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 968 $valid_elements[] =
'object[align<bottom?left?middle?right?top|archive|border|class|classid' 969 .
'|codebase|codetype|data|declare|dir<ltr?rtl|height|hspace|id|lang|name' 970 .
'|onclick|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 971 .
'|onmouseout|onmouseover|onmouseup|standby|style|tabindex|title|type|usemap' 975 $valid_elements[] =
'ol[class|compact<compact|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 976 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 977 .
'|onmouseup|start|style|title|type]';
980 $valid_elements[] =
'optgroup[class|dir<ltr?rtl|disabled<disabled|id|label|lang|onclick' 981 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 982 .
'|onmouseout|onmouseover|onmouseup|style|title]';
985 $valid_elements[] =
'option[class|dir<ltr?rtl|disabled<disabled|id|label|lang|onclick|ondblclick' 986 .
'|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout' 987 .
'|onmouseover|onmouseup|selected<selected|style|title|value]';
990 $valid_elements[] =
'p[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick' 991 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 992 .
'|onmouseout|onmouseover|onmouseup|style|title]';
995 $valid_elements[] =
'param[id|name|type|value|valuetype<DATA?OBJECT?REF]';
1001 $valid_elements[] =
'pre/listing/plaintext/xmp[align|class|dir<ltr?rtl|id|lang|onclick|ondblclick' 1002 .
'|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout' 1003 .
'|onmouseover|onmouseup|style|title|width]';
1006 $valid_elements[] =
'q[cite|class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1007 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1011 $valid_elements[] =
's[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup' 1012 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style|title]';
1015 $valid_elements[] =
'samp[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1016 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1020 $valid_elements[] =
'script[charset|defer|language|src|type]';
1023 $valid_elements[] =
'select[class|dir<ltr?rtl|disabled<disabled|id|lang|multiple<multiple|name' 1024 .
'|onblur|onclick|ondblclick|onfocus|onkeydown|onkeypress|onkeyup' 1025 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|size|style' 1026 .
'|tabindex|title]';
1029 $valid_elements[] =
'small[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1030 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1034 $valid_elements[] =
'span[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 1035 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 1036 .
'|onmouseup|style|title]';
1039 $valid_elements[] =
'strike[class|class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 1040 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 1041 .
'|onmouseup|style|title]';
1044 $valid_elements[] =
'strong/b[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1045 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1049 $valid_elements[] =
'style[dir<ltr?rtl|lang|media|title|type]';
1052 $valid_elements[] =
'sub[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1053 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1057 $valid_elements[] =
'sup[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1058 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1062 $valid_elements[] =
'table[align<center?left?right|bgcolor|border|cellpadding|cellspacing|class' 1063 .
'|dir<ltr?rtl|frame|height|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1064 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|rules' 1065 .
'|style|summary|title|width]';
1068 $valid_elements[] =
'tbody[align<center?char?justify?left?right|char|class|charoff|dir<ltr?rtl|id' 1069 .
'|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown' 1070 .
'|onmousemove|onmouseout|onmouseover|onmouseup|style|title' 1071 .
'|valign<baseline?bottom?middle?top]';
1074 $valid_elements[] =
'td[abbr|align<center?char?justify?left?right|axis|bgcolor|char|charoff|class' 1075 .
'|colspan|dir<ltr?rtl|headers|height|id|lang|nowrap<nowrap|onclick' 1076 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 1077 .
'|onmouseout|onmouseover|onmouseup|rowspan|scope<col?colgroup?row?rowgroup' 1078 .
'|style|title|valign<baseline?bottom?middle?top|width]';
1081 $valid_elements[] =
'textarea[accesskey|class|cols|dir<ltr?rtl|disabled<disabled|id|lang|name' 1082 .
'|onblur|onclick|ondblclick|onfocus|onkeydown|onkeypress|onkeyup' 1083 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|onselect' 1084 .
'|readonly<readonly|rows|style|tabindex|title]';
1087 $valid_elements[] =
'tfoot[align<center?char?justify?left?right|char|charoff|class|dir<ltr?rtl|id' 1088 .
'|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown' 1089 .
'|onmousemove|onmouseout|onmouseover|onmouseup|style|title' 1090 .
'|valign<baseline?bottom?middle?top]';
1093 $valid_elements[] =
'th[abbr|align<center?char?justify?left?right|axis|bgcolor|char|charoff|class' 1094 .
'|colspan|dir<ltr?rtl|headers|height|id|lang|nowrap<nowrap|onclick' 1095 .
'|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove' 1096 .
'|onmouseout|onmouseover|onmouseup|rowspan|scope<col?colgroup?row?rowgroup' 1097 .
'|style|title|valign<baseline?bottom?middle?top|width]';
1100 $valid_elements[] =
'thead[align<center?char?justify?left?right|char|charoff|class|dir<ltr?rtl|id' 1101 .
'|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup|onmousedown' 1102 .
'|onmousemove|onmouseout|onmouseover|onmouseup|style|title' 1103 .
'|valign<baseline?bottom?middle?top]';
1106 $valid_elements[] =
'title[dir<ltr?rtl|lang]';
1109 $valid_elements[] =
'tr[abbr|align<center?char?justify?left?right|bgcolor|char|charoff|class' 1110 .
'|rowspan|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1111 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1112 .
'|title|valign<baseline?bottom?middle?top]';
1115 $valid_elements[] =
'tt[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup' 1116 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style|title]';
1119 $valid_elements[] =
'u[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress|onkeyup' 1120 .
'|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style|title]';
1124 $valid_elements[] =
'span[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 1125 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 1126 .
'|onmouseup|style|title]';
1129 $valid_elements[] =
'ul[class|compact<compact|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown' 1130 .
'|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover' 1131 .
'|onmouseup|style|title|type]';
1134 $valid_elements[] =
'var[class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown|onkeypress' 1135 .
'|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|style' 1141 return implode(
',', $valid_elements);
1151 while (strpos($a_string,
'| |') !==
false) {
1152 $a_string = str_replace(
'| |',
'|', $a_string);
1155 while (strpos($a_string,
',,') !==
false) {
1156 $a_string = str_replace(
',,',
',', $a_string);
1158 while (strpos($a_string,
'separator') !==
false) {
1159 $a_string = str_replace(
'separator',
'|', $a_string);
1161 while (strpos($a_string,
',') !==
false) {
1162 $a_string = str_replace(
',',
' ', $a_string);
1165 if (isset($a_string[0]) && $a_string[0] ===
',') {
1166 $a_string = (string) substr($a_string, 1);
1169 if ($a_string !==
'' && $a_string[strlen($a_string) - 1] ===
',') {
1170 $a_string = substr($a_string, 0, -1);
1173 if ($a_string !==
'' && substr_count($a_string,
'ilimgupload') > 1) {
1174 $arr = explode(
'ilimgupload', $a_string, 2);
1175 $a_string = $arr[0];
1176 if (count($arr) > 1) {
1177 $a_string .=
' ilimgupload ' . str_replace(
'ilimgupload',
'', $arr[1]);
removeAllContextMenuItems()
_buildAdvancedButtonsFromHTMLTags(int $a_buttons_section, array $a_html_tags)
handleImagePluginsBeforeRendering(array $tags)
setStyleSelect(bool $a_styleselect)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _getRichTextEditor()
Returns the identifier for the Rich Text Editor.
addUserTextEditor(string $editor_selector)
bool $remove_img_context_menu_item
touchBlock(string $block)
overwrites ITX::touchBlock.
static _setRichTextEditorUserState(int $a_state)
Sets the state of the rich text editor visibility for the current user.
disableButtons($a_button)
Sets buttons which should be disabled in the RTE.
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
_buildButtonsFromHTMLTags(array $a_html_tags)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
static getStyleSheetLocation(string $mode="output", string $a_css_name="", string $a_css_location="")
get full style sheet file name (path inclusive) of current user
addPlugin(string $a_plugin_name)
static getNewContentStyleSheetLocation(string $mode="output")
get full style sheet file name (path inclusive) of current user
static bool $renderedToGlobalTemplate
handleIliasImageManagerAdded()
touchBlock(string $block)
Rich Text Editor base class This class provides access methods to a Rich Text Editor (RTE) integrated...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRemoveImgContextMenuItem(bool $remove_img_context_menu_item)
static removeRedundantSeparators(string $a_string)
Removes redundant seperators and removes ,, and , at the first or last position of the string...
_buildAdvancedTableButtonsFromHTMLTags(array $a_html_tags)
addContextmenuItem(string $item='')
blockExists(string $a_blockname)
addCustomRTESupport(int $obj_id, string $obj_type, array $tags)
addRTESupport(int $obj_id, string $obj_type, string $a_module='', bool $allowFormElements=false, ?string $cfg_template=null, bool $hide_switch=false)
getDisabledButtons(bool $as_list=true)
Returns the disabled RTE buttons.
blockExists(string $block_name)
check if block exists in actual template
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
removePlugin(string $a_plugin_name)
addInternalTinyMCEImageManager()
__construct(Container $dic, ilPlugin $plugin)
static _getRichTextEditorUserState()
Gets the state of the rich text editor visibility for the current user.
getButtonsForUserTextEditor(array $buttontags)
handleImgContextMenuItem(ilTemplate $tpl)
addButton(string $a_button_name)
ilGlobalTemplateInterface $tpl
getRemoveImgContextMenuItem()
handleIliasImageManagerRemoved()
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
_buildAdvancedBlockformatsFromHTMLTags(array $a_html_tags)
_getValidElementsFromHTMLTags(array $a_html_tags)
static _getUsedHTMLTags(string $a_module="")
Returns an array of all allowed HTML tags for text editing.