Plugin Editor_tab von Jerry.
Es gab auch mal ein Plugin von Holger Switcheditor, ist aber nicht mehr downloadbar.
Plugin Editor_tab von Jerry.
2. Der Plugin handelt die Seite komisch und zeigt keinen Editor. EDITXH-DEPRECATED: Function tag() is deprecated
/Users/msereday/CMSimple_XH/cmsimple-xh-1.8RC1/plugins/editor_tab/editor_tab_view.php:41
XH-DEPRECATED: Function tag() is deprecated
/Users/msereday/CMSimple_XH/cmsimple-xh-1.8RC1/plugins/editor_tab/editor_tab_view.php:42
XH-DEPRECATED: Function tag() is deprecated
/Users/msereday/CMSimple_XH/cmsimple-xh-1.8RC1/plugins/editor_tab/editor_tab_view.php:48
XH-DEPRECATED: Function XH_encodeJson() is deprecated
/Users/msereday/CMSimple_XH/cmsimple-xh-1.8RC1/plugins/tinymce4/links.php:50
XH-DEPRECATED: Function XH_encodeJson() is deprecated
/Users/msereday/CMSimple_XH/cmsimple-xh-1.8RC1/plugins/tinymce4/links.php:89
Das habe ich hier ja bereits erwähnt. Bisher weiß ich dafür keine Lösung. Der Editor wird aber gewechselt.
(ohne Gewähr) *Problem, fehlender Page reload behoben (Dank an Tata).
Did you try the dropdown_codemirror option in tinymce7 or tinymce5? The Codeeditor plugin has to be installed. The source view leads you the directly to the codeeditor to edit content. At least in tinymce7 the look of codemirror is according to the settings in codeeditor.Tata wrote: ↑Wed Nov 27, 2024 10:57 amNow, that I continue testing the new RC1, I think about the switchdebug plugin. It would make the editing more comfortable. So my point of view is to make this plugin the standard part of the packet.
Also the codeeditor would be very comfortable if the switching between e.g. TinyMCE and codeeditor would be easily accessible by a button (instead of entering/changing the configuration).
Wäre es nicht möglich, die beiden Templates, die mit ausgeliefert werden so anzupassen, dass entsprechende Klassen in beiden Templates zur Verfügung stehen und eine dazu passende TinyMCE 7 init-Datei bereitzustellen?lck wrote: ↑Mon Nov 25, 2024 6:36 pmDa hat sich die Syntax geändert, nun muss es so aussehen. Genauso geht es in der TinyMCE 7 init-Datei, z.B. init_full-open.json.Wichtig: Kommentare (*** ...) auch nicht einfügen, sind nur zur Erklärung.Code: Select all
"extended_valid_elements": "span[*]", (***diese Zeile exitiert bereits, nur das Komma am Ende anfügen) "link_class_list": [ {"title": "Choose the Class", "value": ""}, {"title": "zoom", "value": "zoom"}, {"title": "zoom group", "value": "zoom_g"}, {"title": "zoom in inframe", "value": "zoom_i"} ], "image_class_list": [ {"title": "Choose the Class", "value": ""}, {"title": "align left", "value": "img_left"}, {"title": "align right", "value": "img_right"}, {"title": "add border", "value": "img_border"} ] } (***diese Klammer existiert bereits, nicht einfügen!)
Code: Select all
img.imgR,
div.imgR {
margin: .5em 0 .25em 1em;
float: right;
text-align: right;
}
img.imgL,
div.imgL {
margin: .5em 1em .5em 0;
float: left;
text-align: left;
}
Code: Select all
"image_class_list": [
{"title": "Choose the Class", "value": ""},
{"title": "align left", "value": "imgL"},
{"title": "align right", "value": "imgR"}
]
Das wäre vielleicht eine Möglichkeit, das kann Ludwig sicher besser beantworten als ich.
Hier aber denke ich, das geht nicht.
Das wäre natürlich das einfachste, wenn mit dem jeweiligen Template eine passende init-Datei mit geliefert wird. Die kann man ja problemlos im Config-Menü von Tinymce auswählen.