Drupal 和 TinyMCE +文件管理器所见即所得

发布于 2024-11-23 18:10:54 字数 321 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌上青苔 2024-11-30 18:10:54

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,

),

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:

'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,

),

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文