我正在尝试使用rte_ckeditor_image
插件中的news
插件添加添加图像的功能。我已经完成了手册中描述的所有步骤(创建RTE文件夹,向ext_localconf.php
文件添加代码片段),但是仍然缺少添加照片的可能性。
我做错了,还是news
的插件无法处理?
P.S。有什么方法可以全局运行rte_ckeditor_image
ext?还是必须分别配置每个插件?
答案 0 :(得分:0)
我正在使用以下配置,即使在新闻中,它也能很好地运行:
FullAndImage.yaml
# Load default processing options
imports:
# Import default RTE config (for example)
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Full.yaml" }
# Import the image plugin configuration
- { resource: "EXT:rte_ckeditor_image/Configuration/RTE/Plugin.yaml" }
# Add configuration for the editor
# For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config
editor:
config:
removePlugins: null
externalPlugins:
typo3image:
allowedExtensions: "gif,jpg,jpeg,png,svg"
ext_localconf.php中的:
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['default'] = 'EXT:my_extension/Configuration/RTE/FullAndImage.yaml';
我从未为news
配置CKEditor。
编辑:
还有一个提示:如果您升级了TYPO3,并且仍然具有用于旧编辑器rte_htmlarea
的PageTS,那么最好是删除旧配置。它可以在新的编辑器rte_ckeditor
中弄乱某些内容。我不知道是否有人在新编辑器中验证了哪些旧参数令人不安或产生了哪些影响,因此,仅删除旧配置是最简单的解决方案。