Drupal:将联系表单作为字段添加到用户配置文件

时间:2009-12-20 17:44:24

标签: drupal drupal-6 cmd

Drupal允许您为可以公开访问的用户配置文件页面创建其他字段(匿名用户)。我想在每个用户的个人资料页面上添加联系表单。我知道每个用户都有一个联系页面,但我希望在http://localhost/users/foobar页面上嵌入一个联系表单。

也许有一个模块可以为配置文件添加字段类型?或者您也可以使用表单创建模块,该模块还允许您在用户个人资料页面上显示表单?

我正在运行Drupal 6.14并且我正在使用这些模块:

admin_menu        ctools  filefield   jquery_ui  pathauto          vcard
auto_nodetitle    date    imageapi    jump       taxonomy_manager  views
cck               devel   imagecache  link       token             webform
content_taxonomy  email   imagefield  panels     transliteration

1 个答案:

答案 0 :(得分:1)

在您的主题中,使用以下代码扩展默认user-profile.tpl.php

<?php 
print drupal_get_form('contact_mail_user', $account);
?>