我想在CKEditor中使用一些可选的附加内容,特别是视频嵌入。
我已将整个内容下载到公共区域的ckeditor,并且在插件目录中有视频。
我从CKeditor的CDN开始:
<script src="//cdn.ckeditor.com/4.7.3/full-all/ckeditor.js"></script>
然后我添加了视频插件的选项:
<script>
CKEDITOR.plugins.addExternal( 'video', '{{ public_path('\ckeditor\plugins\video\ ') }}', 'video.js' );
</script>
(video.js实际上是在我尝试过的子目录对话框中。)
我可以看到我的页面上显示的CKEditor但没有视频按钮。
有任何想法吗?
答案 0 :(得分:1)
首先,您需要将插件存档的内容上传到您网站上的任何文件夹。虽然,最好为文件夹命名,以便您知道它包含CKEditor插件。为了我们的例子,我们将其命名为ckeditor / plugins。您应该最终得到以下路径:
ckeditor/plugins/jsplus_image_editor
现在,我们需要告诉CKEditor从上面的文件夹加载插件。将以下代码添加到CKEditor替换标准控件的行上方的HTML代码中:
<textarea name="editor1"></textarea>
...
<script>
CKEDITOR.plugins.addExternal( 'yourpluginname',
'/ckeditor/plugins/yourpluginname', 'plugin.js' );
CKEDITOR.replace('editor1');
...
</script>
通常您通过config.js安装插件,但由于您使用的是cdn,我们需要更换配置。使用以下代码更新上面的替换:
CKEDITOR.replace('editor1', { customConfig: '/ckeditor/custom_config.js'});
制作上面提到的custom_config.js并放置以下代码 CKEDITOR.editorConfig = function(config){
CKEDITOR.editorConfig = function( config ) {
config.language = 'en';
config.extraPlugins = 'PLUGINNAME';
config.toolbar = 'custom';
config.toolbar_custom = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ], items: [ 'Scayt' ] },
{ name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] },
{ name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar' ] },
{ name: 'tools', items: [ 'Maximize' ] },
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source' ] },
{ name: 'others', items: [ '-' ] },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Strike', '-', 'RemoveFormat' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ] },
{ name: 'styles', items: [ 'Styles', 'Format' ] },
{ name: 'about', items: [ 'About' ] },
{ name : 'new_group', items: ['PLUGINNAME'] }
];}
希望这有帮助!