我想添加 Site Wide用户表单节点。
我使用了Drupal 7
。
网站范围内的Id-s:contact_site_form
(我是从from.inc
获得的)
使用alter我更改了表单内容。
在节点代码中:
php代码:
print drupal_render(drupal_get_form('contact_site_form'));
错误讯息:
Notice: Undefined index: contact_site_form drupal_retrieve_form() függvényben (D:\wamp\www\online_recruitment\includes\form.inc 766 sor).
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'contact_site_form' was given drupal_retrieve_form() függvényben (D:\wamp\www\online_recruitment\includes\form.inc 802 sor).
答案 0 :(得分:1)
我找到了答案:
http://drupal.org/node/237559#comment-780448 - > D6方式,但在D7工作
php:require_once drupal_get_path('module','contact')。'/ contact.pages.inc';
它就像一个魅力。