【发布时间】:2015-02-18 12:41:54
【问题描述】:
我使用drupal 4.4.7和ckeditor,我想使用幻灯片,ckeditor的插件。我已经正确安装了ckeditor和ckfinder,我也安装了幻灯片并在配置页面上打开了这个插件,但是没有图标在CKeditor设置“SHOWEDITOR APPEARANCE”选项卡中。
谁能帮帮我?
【问题讨论】:
标签: drupal-7 ckeditor slideshow ckfinder
我使用drupal 4.4.7和ckeditor,我想使用幻灯片,ckeditor的插件。我已经正确安装了ckeditor和ckfinder,我也安装了幻灯片并在配置页面上打开了这个插件,但是没有图标在CKeditor设置“SHOWEDITOR APPEARANCE”选项卡中。
谁能帮帮我?
【问题讨论】:
标签: drupal-7 ckeditor slideshow ckfinder
我遇到了同样的问题并找到了解决方案!
在“sites\all\modules\ckeditor\plugins\slideshow\plugin.js”中,我添加了图标图像的路径(第 91 行):
// Create a toolbar button that executes the above command.
editor.ui.addButton('Slideshow', {
// The text part of the button (if available) and tooptip.
label: lang.insertSlideShow,
command: 'slideshow',
// The button placement in the toolbar (toolbar group name).
toolbar: 'insert',
icon: this.path + 'icons/slideshow.png'
});
该按钮现在出现在配置 CKEditor 中:)
【讨论】: