i'd like to add a plugin to TinyMCE, which i am using in the WYSIWYG Module:
http://codemagic.sutulustus.com/

from reading there, i tried to just upload, and assumed, the plugin would show up with the other plugins-checkboxes in the editor-profile config automatically.
It didn't, so i think it needs some coding, i expect only a line or so in a config...
I manually searched around for a config-file,
googled and found a plugin_reg.php mentioned here, but this was for older Drupal versions.
http://www.alligatorsneeze.com/how-creating-simple-plugin-tinymce
also, i found
http://www.tinymce.com/wiki.php/MCImageManager:Creating_a_plugin
mentioning a "general.plugins comma separated list", where one needs to add the new plugin...
searching for such a list, i also failed...

Is there an easy way to make wysiwyg-config aware of new plugins for tinyMCE?

Comments

Anonymous’s picture

The imce wysiwyg bridge module does something similar (http://drupal.org/project/imce_wysiwyg), it looks like you just need to implement hook_wysiwyg_plugin() to make the module aware, the code in the imce_wysiwyg module is a very good starting point.

sirtet’s picture

thanks _isos.
I looked at that, and some other modules.
But since this was not about an original TinyMCE plugin, it did not help me to do the job. Not enough knowledge on my end...

However, i found a very similar Module, which led me to a solution for D6 and D7.
I did post the Modules in the issue here:
http://drupal.org/node/1242044