ckeditor.inc in elFinder file manager 6
Same filename and directory in other branches
CKeditor integration plugin
File
editors/ckeditor/ckeditor.incView source
<?php
// $Id$
/**
* @file
* CKeditor integration plugin
*/
/**
* Pseudo-hook for elfinder hook_wysiwyg_plugin implementation
*/
function elfinder_ckeditor_elfinder_editor_plugin($options) {
return array(
'elfinder' => array(
'extensions' => array(
'elfinder' => t('elFinder'),
),
'url' => $options['homepage_url'],
'options' => array(
'filebrowserBrowseUrl' => $options['elfinder_url'],
),
'load' => FALSE,
),
);
}
Functions
Name | Description |
---|---|
elfinder_ckeditor_elfinder_editor_plugin | Pseudo-hook for elfinder hook_wysiwyg_plugin implementation |