1

我想从节点添加站点范围用户。

我用过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).
4

1 回答 1

1

我找到了答案:

http://drupal.org/node/237559#comment-780448 -> D6 方式,但也适用于 D7

php: require_once drupal_get_path('module', 'contact') .'/contact.pages.inc';

它就像一个魅力。

于 2012-09-27T09:31:48.080 回答