CKEditor - 自定义图像浏览器

时间:2010-07-27 10:40:06

标签: php javascript plugins ckeditor file-browser

我目前正在开发PHP和jQuery的图像浏览器。我设法创建了一个自定义按钮插件,可以在新窗口(而不是对话框)中打开我的图像浏览器:

CKEDITOR.plugins.add('imgbrowser',
{
    init: function(editor)
    {
        var pluginName = 'imgbrowser';
        editor.ui.addButton('Imgbrowser',
            {
                label: 'Image browser',
                command: pluginName,
                click: function (editor) { window.open('/publish/browser/index.php','Image Browser','width=900,height=600'); }
            });
    }
});

这里是否有人知道如何启用回调函数以及如何使用它以便我可以将所选图片添加到编辑器中?

1 个答案:

答案 0 :(得分:1)

确定。这是答案:

在父窗口中我有这个功能:

function InsertHTML(file_path)
        {
            // Get the editor instance that we want to interact with.
            var oEditor = CKEDITOR.instances.page_content;
            var value = file_path;

            // Check the active editing mode.
            if ( oEditor.mode == 'wysiwyg' )
            {
                // Insert the desired HTML.
                oEditor.insertHtml( '<img src="' + value + '" />' );
            }
            else
                alert( 'You must be on WYSIWYG mode!' );
        }

page_content是我的textarea的ID。

在弹出窗口中我有这个功能:

function sendToParent(file_path) {
    window.opener.InsertHTML(file_path);
}


echo "<input type='button' value='Insert image' onclick='sendToParent(\"".$img_element."\")' />"