Drupal 和 TinyMCE +文件管理器所见即所得
我在 Drupal 6 站点上安装了 WYSIWYG 模块,并且正在使用 TinyMCE。
这很好用。
现在我想添加 TinyMCE 的文件管理器插件,该怎么做?
我将 filemanager 文件夹添加到 /sites/all/libraries/tinymce/jscripts/tiny_mce/plugins
并更改了此内容:
$mcFileManagerConfig['authenticator'] = "DrupalAuthenticator";
在 config.php
但现在怎么办?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WYSIWYG 模块中的 TinyMCE 插件在sites/all/modules/wysiwyg/editors/tinymce.inc 中配置,
在函数中:wysiwyg_tinymce_plugins($editor)。
您可以通过实现 hook_wysiwyg_plugin() 来定义一个插件,例如:
),
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:
),