Opened 10 years ago
Last modified 10 years ago
#13895 confirmed New Feature
Add a hook to allow use of a javascript image/upload and file browser
| Reported by: | hmoore71 | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | File Browser | Version: | 4.0 |
| Keywords: | Cc: |
Description (last modified by )
this is what I did to plugins/filebrowse/plugin.js
function browseServer() {
//mappro modification
if (typeof editor.mappro === 'object'){
var q = new BrowseImagesDialog(editor.mappro.options.args, editor, params.CKEditorFuncNum);
}else{
// TODO: V4: Remove backward compatibility (#8163).
editor.popup(url, ..........
}
}
var editor = $('.desc').ckeditor().editor;
editor.mappro = mappro;
I will be using this in my Wordpress plugin IBS Mappro. I am also working on an upload too.
I would like the hook integrated more robustly though;
if(typeof editor.userHookBrowser === 'object'){
new editor.userHookBrowser.dialog(editor.userHookBowser.options, params.CKEditorFuncNum)
Change History (3)
comment:1 Changed 10 years ago by
| Description: | modified (diff) |
|---|
comment:2 Changed 10 years ago by
| Description: | modified (diff) |
|---|
comment:3 Changed 10 years ago by
| Status: | new → confirmed |
|---|---|
| Version: | 4.5.4 → 4.0 |

I think that the right way to add a hook would be to fire some event (and adding the current behaviour as its default listener).