Drupal 6:更改配置文件形式
我使用标准配置文件工具向用户配置文件添加了多个字段。现在我想验证用户输入的数据;例如,我添加了一个名为“电子邮件”的字段,我想让用户仅在此字段中输入有效的电子邮件。
我怎样才能实现这个目标?
I've added several fields to user profile using the standard profile tool. Now I want to validate data entered by a user; for example, I added a field called "email" and I want to let the users enter only valid emails to this field.
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为将自动验证的个人资料字段选择字段类型“电子邮件”,但如果您希望手动执行此操作,请使用 hook_form_alter 将验证回调添加到表单。这是一篇涵盖该概念的文章 - http://befused.com/drupal/additional-validation-function
You can select the field type "email" for profile fields that will automatically validate, but if you wish to do it manually, use hook_form_alter to add a validation callback to the form. Here's an article that covers the concept - http://befused.com/drupal/additional-validation-function