本文介绍了Drupal 6:在自定义模块表单上实现Wysiwyg的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个使用Form API编写的自定义表单。我们有WYSIWYG模块和TinyMCE在该模块将被使用的网站上实现。如何在自定义表单文本区域中实现WYSIWYG 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!
解决方案
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 use filter_form()
这篇关于Drupal 6:在自定义模块表单上实现Wysiwyg的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!