在 drupal 中为自定义文本区域表单字段启用所见即所得
我在自定义 drupal6 模块中创建了一个自定义表单,该表单有一个文本区域。 我将表单输出为嵌入 php 代码中的 html,如下所示:
function custom_my_form()
{
$f = '<form name="add_user" action="" method="post">
<label> Name </label>
<p><input type="text" name="name" value="" /></p>
<label>About Yourself</label>
<p><textarea name="desc"></textarea></p>
<input type="submit" name="submit" value="Add">
</form>';
return $f;
}
我已经安装并启用了 WYSIWYG 模块。 我的默认输入格式是“Filtered HTML”,并且我为此输入格式选择了 FCK 编辑器。
现在我想为此表单中的文本区域字段启用所见即所得。 我怎样才能继续这个?
i have created a custom form in my custom drupal6 module and the form has a textarea.
I am outputting the form as html embedded inside the php code, like the following:
function custom_my_form()
{
$f = '<form name="add_user" action="" method="post">
<label> Name </label>
<p><input type="text" name="name" value="" /></p>
<label>About Yourself</label>
<p><textarea name="desc"></textarea></p>
<input type="submit" name="submit" value="Add">
</form>';
return $f;
}
I have installed and enabled the WYSIWYG module.
My default input format is "Filtered HTML" and i have chosen the FCK editor for this input format.
Now i want to enable the WYSIWYG for the textarea field in this form.
How can i go ahead with this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
好吧,你如何创建表单取决于你,这只是取决于它是否会回来咬你的屁股......
看看评论模块。我注意到可以选择注释的输入格式,并且当选择完整/过滤的 HTML 时,所见即所得编辑器就会启动。以下是相关代码:
因此,您定义一个包含两个元素的数组,其中之一是textarea 本身,另一个是由filter_form 生成的格式选择器,仅此而已。
这是来自 http://groups.drupal.org/node/104604
Well, how ever you create forms is up to you, it just depends if it has ever come back to bite you in the butt...
Look at the comment module. I had noticed that it was possible to choose input format for comments, and when Full/filtered HTML was selected, the WYSIWYG editor kicked in. Here is the related code:
So, you define an array with two elements, one of which is the textarea itself, and the other one the format chooser generated by filter_form, and that's all.
This was from http://groups.drupal.org/node/104604
对于D7来说,就更简单了。我们得到了名为 text_format 的新类型。
For D7, its even simple. We got new type called text_format.
是的,你可以这样做。只需将以下 JavaScript 添加到您的页面即可。
此脚本会自动将 html 代码中的文本区域转换为富文本编辑器
。更多信息请访问此链接。
Yes, you can do this. Just add the following javascript to your page.
This script automatically converts the text areas in your html code to rich text editors
More info at this link.
首先,您不应该创建这样的表单。相反,请使用 Drupal 的内置 Forms API。请参阅表单 API 快速入门指南了解更多信息。
Drupal 网站上的此页面将帮助您将所见即所得添加到自定义表单中:http://drupal.org/node/358316< /a>
First, you should not create forms like that. Instead, use Drupal's built-in Forms API. Take a look at the Form API Quickstart Guide for more information.
This page on Drupal's site will help you add WYSIWYG to your custom forms: http://drupal.org/node/358316