(→Example 4) |
|||
(16 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{#CUSTOMTITLE:Integrating CKEditor with a Custom File Browser}} | ||
+ | __TOC__ | ||
CKEditor can be easily integrated with your own file browser. | CKEditor can be easily integrated with your own file browser. | ||
− | To connect already compatible | + | To connect a file browser that is already compatible with CKEditor (like [http://ckfinder.com CKFinder]), follow the [[CKEditor_3.x/Developers_Guide/File_Browser_(Uploader)|File Browser (Uploader)]] documentation. |
− | == Interaction | + | == Interaction Between CKEditor and File Browser == |
+ | CKEditor automatically sends some additional arguments to the file browser: | ||
+ | * <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#name CKEditor]</code> – name of the CKEditor instance, | ||
+ | * <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#langCode langCode]</code> – CKEditor language (<code>en</code> for English), | ||
+ | * <code>CKEditorFuncNum</code> – anonymous function reference number used to pass the URL of a file to CKEditor (a random number). | ||
− | + | <source lang="php"> | |
− | + | CKEditor=editor1&CKEditorFuncNum=1&langCode=en | |
− | + | </source> | |
− | |||
− | + | === Example 1 === | |
+ | Suppose that CKEditor was created using the following JavaScript call: | ||
− | === | + | <source lang="javascript"> |
+ | CKEDITOR.replace( 'editor2', | ||
+ | { | ||
+ | filebrowserBrowseUrl : '/browser/browse.php?type=Images', | ||
+ | filebrowserUploadUrl : '/uploader/upload.php?type=Files' | ||
+ | }); | ||
+ | </source> | ||
− | + | In order to browse files, CKEditor will call: | |
− | + | <source lang="php"> | |
+ | /browser/browse.php?type=Images&CKEditor=editor2&CKEditorFuncNum=2&langCode=de | ||
+ | </source> | ||
− | If data (the third argument) is a string, it will be displayed by CKEditor | + | The call includes the following elements: |
+ | * <code>/browser/browse.php?type=Images</code> – the value of the <code>filebrowserBrowseUrl</code> parameter, | ||
+ | * <code>&CKEditor=editor2&CKEditorFuncNum=2&langCode=de</code> – the information added by CKEditor: | ||
+ | ** <code>CKEditor=editor2</code> – the name of a CKEditor instance (<code>editor2</code>), | ||
+ | ** <code>CKEditorFuncNum=2</code> – the reference number of an anonymous function that should be used in the <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.tools.html#.callFunction CKEDITOR.tools.callFunction]</code>, | ||
+ | ** <code>langCode=de</code> – language code (in this case: German). This parameter can be used to send localized error messages. | ||
+ | |||
+ | == Passing the URL of the Selected File == | ||
+ | To send back the file URL from an external file browser, call <code>[http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.tools.html#.callFunction CKEDITOR.tools.callFunction]</code> and pass <code>CKEditorFuncNum</code> as the first argument: | ||
+ | <source lang="php"> | ||
+ | window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl [, data] ); | ||
+ | </source> | ||
+ | |||
+ | If <code>data</code> (the third argument) is a string, it will be displayed by CKEditor. This parameter is usually used to display an error message if a problem occurs during the file upload. | ||
+ | |||
+ | === Example 2 === | ||
+ | The following example shows how to send the URL from a file browser using JavaScript code: | ||
+ | |||
+ | <source lang="javascript"> | ||
+ | // Helper function to get parameters from the query string. | ||
+ | function getUrlParam(paramName) | ||
+ | { | ||
+ | var reParam = new RegExp('(?:[\?&]|&)' + paramName + '=([^&]+)', 'i') ; | ||
+ | var match = window.location.search.match(reParam) ; | ||
+ | |||
+ | return (match && match.length > 1) ? match[1] : '' ; | ||
+ | } | ||
+ | var funcNum = getUrlParam('CKEditorFuncNum'); | ||
+ | var fileUrl = '/path/to/file.txt'; | ||
+ | window.opener.CKEDITOR.tools.callFunction(funcNum, fileUrl); | ||
+ | </source> | ||
+ | |||
+ | === Example 3 === | ||
+ | The following code shows how to send back the URL of an uploaded file from the PHP connector: | ||
+ | |||
+ | <source lang="php"> | ||
+ | <?php | ||
+ | // Required: anonymous function reference number as explained above. | ||
+ | $funcNum = $_GET['CKEditorFuncNum'] ; | ||
+ | // Optional: instance name (might be used to load a specific configuration file or anything else). | ||
+ | $CKEditor = $_GET['CKEditor'] ; | ||
+ | // Optional: might be used to provide localized messages. | ||
+ | $langCode = $_GET['langCode'] ; | ||
+ | |||
+ | // Check the $_FILES array and save the file. Assign the correct path to a variable ($url). | ||
+ | $url = '/path/to/uploaded/file.ext'; | ||
+ | // Usually you will only assign something here if the file could not be uploaded. | ||
+ | $message = ''; | ||
+ | |||
+ | echo "<script type='text/javascript'>window.parent.CKEDITOR.tools.callFunction($funcNum, '$url', '$message');</script>"; | ||
+ | ?> | ||
+ | </source> | ||
+ | |||
+ | === Example 4 === | ||
+ | If <code>data</code> is a function, it will be executed in the scope of the button that called the file browser. It means that the server connector can have direct access CKEditor and the dialog window to which the button belongs. | ||
+ | |||
+ | Suppose that apart from passing the <code>fileUrl</code> value that is assigned to an appropriate field automatically based on the dialog window definition you also want to set the <code>alt</code> attribute, if the file browser was opened in the '''Image Properties''' dialog window. In order to do this, pass an anonymous function as a third argument: | ||
+ | |||
+ | <source lang="javascript"> | ||
+ | window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl, function() { | ||
+ | // Get the reference to a dialog window. | ||
+ | var element, dialog = this.getDialog(); | ||
+ | // Check if this is the Image dialog window. | ||
+ | if (dialog.getName() == 'image') { | ||
+ | // Get the reference to a text field that holds the "alt" attribute. | ||
+ | element = dialog.getContentElement( 'info', 'txtAlt' ); | ||
+ | // Assign the new value. | ||
+ | if ( element ) | ||
+ | element.setValue( "alt text" ); | ||
+ | } | ||
+ | ... | ||
+ | // Return false to stop further execution - in such case CKEditor will ignore the second argument (fileUrl) | ||
+ | // and the onSelect function assigned to a button that called the file browser (if defined). | ||
+ | [return false;] | ||
+ | }); | ||
+ | </source> |
Latest revision as of 09:28, 30 August 2011
Contents
CKEditor can be easily integrated with your own file browser.
To connect a file browser that is already compatible with CKEditor (like CKFinder), follow the File Browser (Uploader) documentation.
Interaction Between CKEditor and File Browser
CKEditor automatically sends some additional arguments to the file browser:
-
CKEditor
– name of the CKEditor instance, -
langCode
– CKEditor language (en
for English), -
CKEditorFuncNum
– anonymous function reference number used to pass the URL of a file to CKEditor (a random number).
CKEditor=editor1&CKEditorFuncNum=1&langCode=en
Example 1
Suppose that CKEditor was created using the following JavaScript call:
CKEDITOR.replace( 'editor2', { filebrowserBrowseUrl : '/browser/browse.php?type=Images', filebrowserUploadUrl : '/uploader/upload.php?type=Files' });
In order to browse files, CKEditor will call:
/browser/browse.php?type=Images&CKEditor=editor2&CKEditorFuncNum=2&langCode=de
The call includes the following elements:
-
/browser/browse.php?type=Images
– the value of thefilebrowserBrowseUrl
parameter, -
&CKEditor=editor2&CKEditorFuncNum=2&langCode=de
– the information added by CKEditor:-
CKEditor=editor2
– the name of a CKEditor instance (editor2
), -
CKEditorFuncNum=2
– the reference number of an anonymous function that should be used in theCKEDITOR.tools.callFunction
, -
langCode=de
– language code (in this case: German). This parameter can be used to send localized error messages.
-
Passing the URL of the Selected File
To send back the file URL from an external file browser, call CKEDITOR.tools.callFunction
and pass CKEditorFuncNum
as the first argument:
window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl [, data] );
If data
(the third argument) is a string, it will be displayed by CKEditor. This parameter is usually used to display an error message if a problem occurs during the file upload.
Example 2
The following example shows how to send the URL from a file browser using JavaScript code:
// Helper function to get parameters from the query string. function getUrlParam(paramName) { var reParam = new RegExp('(?:[\?&]|&)' + paramName + '=([^&]+)', 'i') ; var match = window.location.search.match(reParam) ; return (match && match.length > 1) ? match[1] : '' ; } var funcNum = getUrlParam('CKEditorFuncNum'); var fileUrl = '/path/to/file.txt'; window.opener.CKEDITOR.tools.callFunction(funcNum, fileUrl);
Example 3
The following code shows how to send back the URL of an uploaded file from the PHP connector:
<?php // Required: anonymous function reference number as explained above. $funcNum = $_GET['CKEditorFuncNum'] ; // Optional: instance name (might be used to load a specific configuration file or anything else). $CKEditor = $_GET['CKEditor'] ; // Optional: might be used to provide localized messages. $langCode = $_GET['langCode'] ; // Check the $_FILES array and save the file. Assign the correct path to a variable ($url). $url = '/path/to/uploaded/file.ext'; // Usually you will only assign something here if the file could not be uploaded. $message = ''; echo "<script type='text/javascript'>window.parent.CKEDITOR.tools.callFunction($funcNum, '$url', '$message');</script>"; ?>
Example 4
If data
is a function, it will be executed in the scope of the button that called the file browser. It means that the server connector can have direct access CKEditor and the dialog window to which the button belongs.
Suppose that apart from passing the fileUrl
value that is assigned to an appropriate field automatically based on the dialog window definition you also want to set the alt
attribute, if the file browser was opened in the Image Properties dialog window. In order to do this, pass an anonymous function as a third argument:
window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl, function() { // Get the reference to a dialog window. var element, dialog = this.getDialog(); // Check if this is the Image dialog window. if (dialog.getName() == 'image') { // Get the reference to a text field that holds the "alt" attribute. element = dialog.getContentElement( 'info', 'txtAlt' ); // Assign the new value. if ( element ) element.setValue( "alt text" ); } ... // Return false to stop further execution - in such case CKEditor will ignore the second argument (fileUrl) // and the onSelect function assigned to a button that called the file browser (if defined). [return false;] });