Drupal 6:在自定义模块表单上实现 Wysiwyg
我有一个使用 Form API 编写的自定义表单。我们在将使用该模块的站点上实现了所见即所得模块和 TinyMCE。如何在自定义表单文本区域上实现所见即所得 api?
谢谢!
I have a custom form that I have written with the Form API. We have the WYSIWYG module and TinyMCE implemented on the site that this module will be used on. How do I implement the WYSIWYG api on my custom form text areas?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了以防万一有人使用 Drupal 7,这里有一个链接,它应该有助于将所见即所得的 TinyMCE 与您的自定义表单字段集成:http ://drupal.org/node/1087468
谢谢
Just in case anybody working with Drupal 7, here's the link to it that should help integrate WYSIWYG TinyMCE with your custom form fields: http://drupal.org/node/1087468
Thanks
如果您使用的是 drupal 7。请使用以下命令。
在表单提交处理程序中,您可以按如下方式访问该值。
In case you are working in drupal 7. Use the following.
In your form submit handler, you can access the value as follows.
这应该有助于将所见即所得与您的自定义模块表单集成: http://drupal.org/node/358316
基本上,您需要添加每个表单字段的
format
键并使用filter_form()
This should help integrate WYSIWYG with your custom module forms: http://drupal.org/node/358316
Basically, you need to add the
format
key to each of your form fields and usefilter_form()