I installed the WYSIWYG module on my Drupal 6 site, and I’m using TinyMCE.
This works fine.
Now I want to add the filemanager plugin from TinyMCE, how to do this?
I added the filemanager folder to /sites/all/libraries/tinymce/jscripts/tiny_mce/plugins
and changed this:
$mcFileManagerConfig['authenticator'] = "DrupalAuthenticator";
in the config.php
But what now?
TinyMCE plugins in WYSIWYG modules are config in sites/all/modules/wysiwyg/editors/tinymce.inc,
in function: wysiwyg_tinymce_plugins($editor).
You can define one plugin by implement hook_wysiwyg_plugin(), like:
),