我在Drupal 6网站上安装了WYSIWYG模块,我正在使用TinyMCE。
这很好用。
现在我想从TinyMCE添加filemanager插件,怎么做?
我将filemanager文件夹添加到/sites/all/libraries/tinymce/jscripts/tiny_mce/plugins
并改变了这个:
$mcFileManagerConfig['authenticator'] = "DrupalAuthenticator";
在config.php中
但现在呢?
答案 0 :(得分:1)
WYSIWYG模块中的TinyMCE插件在sites / all / modules / wysiwyg / editors / tinymce.inc中配置, 在功能:wysiwyg_tinymce_plugins($ editor)。 您可以通过实现hook_wysiwyg_plugin()定义一个插件,如:
'font' => array(
'path' => $editor['library path'] . '/plugins/font',
'buttons' => array('formatselect' => t('HTML block format'), 'fontselect' => t('Font'), 'fontsizeselect' => t('Font size'), 'styleselect' => t('Font style')),
'extended_valid_elements' => array('font[face|size|color|style],span[class|align|style]'),
'url' => 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/font',
'internal' => TRUE,
),