我需要一些指示如何将用户元素从TYPO3 7.6中的htmlarea_rte迁移到TYPO3 8.7中的CKEditor。
或者重新解释一下我的问题:如何在CKEditor中添加自定义html链接?
这就是我的userElements的样子:
RTE.default {
contentCSS = EXT:mytheme/Resources/Public/Css/Rte.css
proc.allowTagsOutside := addToList(i,em)
proc.entryHTMLparser_db.tags.i >
proc.entryHTMLparser_db.tags.em >
showButtons := addToList(user)
proc.allowedClasses := addToList(envelope, phone, fax)
classesCharacter = envelope, phone, fax
userElements {
10 = Icons
10 {
1 = E-Mail
1.content (
<i class="envelope"></i>
)
2 = Telefon
2.content (
<i class="phone"></i>
)
3 = Fax
3.content (
<i class="fax"></i>
)
}
}
}
答案 0 :(得分:1)
所以你的问题是如何将这些样式(<i class="envelope"></i>
等)添加到CKeditor?
首先,添加.yaml配置文件(请参阅https://typo3worx.eu/2017/02/configure-ckeditor-in-typo3/)
然后在# Inline styles
部分,您可以添加以下内容:
- { name: 'Envelope', element: 'i', attributes: { 'class': 'envelope' } }
另请参阅此处以供参考:https://processwire.com/talk/topic/8342-adding-css-classes-to-ckeditor/
答案 1 :(得分:0)
我已经创建了一个小型CKEditor插件以满足我的需求:
'use strict';
(function () {
CKEDITOR.dtd.$removeEmpty.em = 0;
CKEDITOR.dtd.$removeEmpty.i = 0;
CKEDITOR.plugins.add('icon-envelope', {
icons: 'iconenvelope',
init: function (editor) {
editor.ui.addButton( 'IconEnvelope', {
label: 'Icon E-Mail',
toolbar: 'insert',
command: 'insertIconEnvelope'
});
editor.addCommand( 'insertIconEnvelope', {
exec: function (editor) {
var icon = editor.document.createElement('i');
icon.setAttribute('class', 'fa fa-envelope');
editor.insertElement(icon);
}
});
}
});
})();
&#13;
该插件需要此文件结构才能工作:
icon-envelope
plugin.js
icons
iconenvelope.png
TYPO3中的集成是通过此YAML完成的:
editor:
externalPlugins:
icon-envelope: { resource: "EXT:mytheme/Resources/Public/CkEditorPlugins/icon-envelope/plugin.js" }
完整的代码可以在这里找到: https://gist.github.com/peterkraume/95106c5b27615e06dcfcb01a62b2a30c