tinymce.inc in elFinder file manager 6
Same filename and directory in other branches
TinyMCE integration plugin
File
editors/tinymce/tinymce.incView source
<?php
// $Id$
/**
* @file
* TinyMCE integration plugin
*/
/**
* Pseudo-hook for elfinder hook_wysiwyg_plugin implementation
*/
function elfinder_tinymce_elfinder_editor_plugin($options) {
drupal_add_js($options['plugin_url_base'] . '/tinymce.js');
return array(
'elfinder' => array(
'extensions' => array(
'elfinder' => t('elFinder'),
),
'url' => $options['homepage_url'],
'options' => array(
'file_browser_callback' => 'elfinder_tinymce_browse_callback',
'file_browser_url' => $options['elfinder_url'],
// non standard TinyMCE configuration variable to pass source application to elFinder
'inline_styles' => TRUE,
),
'load' => FALSE,
),
);
}
Functions
Name | Description |
---|---|
elfinder_tinymce_elfinder_editor_plugin | Pseudo-hook for elfinder hook_wysiwyg_plugin implementation |