我正在为这种整合而苦苦挣扎。非常感谢任何帮助。
我只想在图像对话框的链接选项卡上使用文件浏览器选项。另外,我希望它默认为特定文件夹。
我已经下载了文件浏览器和弹出插件(4.3 标准没有在插件文件夹中列出它们)并修改了 config.js:
// enable plugin
config.extraPlugins = 'filebrowser';
config.extraPlugins = 'popup';
我从 include(contentEditor.js) 调用 CK 实例
var config3 = {
toolbar:
[
[ 'Paste', 'PasteFromWord', '-', 'Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Source' , 'Templates', 'Link', 'Image' ]
],
uiColor: "#dafb3f",
height: "570px",
resize_enabled: false,
extraPlugins:'templates,filebrowser,popup',
on: { change: CKonChange }
};
// Initialize the editor.
// Callback function can be passed and executed after full instance creation.
$( 'textarea#nodeContents' ).ckeditor(config3); // nodeContents for city,state,country,resources editors
});
现在,我迷路了。如何激活浏览器按钮并将图像路径传回实例?
1/28 更新
由于我找不到任何有关如何集成文件浏览器插件的文档,因此我正在考虑集成自定义浏览脚本。
所以,在我的 config.js 文件中,我有:
// Custom template files referenced in this array
config.templates_files = [ 'http://dev.wtpcentral.com/js/CK_templates_city.js' ];
// Image browser
config.filebrowserImageBrowseLinkUrl : "/include/filebrowser/browse.php?type=Images&dir="+encodeURIComponent('content/images');
// config.filebrowserImageBrowseUrl : "/include/filebrowser/browse.php?type=Images&dir="+encodeURIComponent('content/images');
// Custom Image upload
config.filebrowserUploadUrl ='/include/classUpload/upload_CK.php';
// enable plugin
// config.extraPlugins = 'filebrowser,popup';
而且,我将browse.php 放入我的/include/filebrowser 文件夹中。
但是,这会引发错误: SyntaxError: invalid label config.filebrowserImageBrowseUrl : "/include/filebrowser/browse.php
而且我的自定义图像上传脚本现在无法加载。
正如您在我的内联注释中看到的那样,我尝试了 config.filebrowserImageBrowseUrl 并获得了相同的结果。
非常感谢任何帮助。