如何在 Drupal 的联系人模块中添加我的 link?
How to Add my link in Contact module in Drupal?
我正在使用 Drupal 7 进行 Web 开发。
我在我的站点中添加了联系人模块。
我想在联系人模块(图中已标记)之间再添加一个字段。
我是 Drupal 新手,PHP。
帮我实现这个。
由于您是 Drupal 的新手,我向您推荐 webform contrib 模块。它非常简单且可配置。
相反,如果您想使用联系表本身。有什么可能有帮助:
- Create drupal 7 custom modules. (Tutorial)
- 然后,学习如何create your own hook。
- 然后,使用
hook_form_alter()
, to alter the contact form to add more fields (using drupal form API) 并处理提交新字段。
我正在使用 Drupal 7 进行 Web 开发。
我在我的站点中添加了联系人模块。
我想在联系人模块(图中已标记)之间再添加一个字段。
我是 Drupal 新手,PHP。
帮我实现这个。
由于您是 Drupal 的新手,我向您推荐 webform contrib 模块。它非常简单且可配置。
相反,如果您想使用联系表本身。有什么可能有帮助:
- Create drupal 7 custom modules. (Tutorial)
- 然后,学习如何create your own hook。
- 然后,使用
hook_form_alter()
, to alter the contact form to add more fields (using drupal form API) 并处理提交新字段。