如何在首页中显示包含drupal_get_form(formid)的自定义块

时间:2012-09-25 10:58:10

标签: drupal

朋友们,我已经开发了一个自定义块,它从现有模块中获取表单,它对于具有表单id作为参数的页面工作正常但在其他页面中我收到此错误/警告。 call_user_func_array()期望参数1是有效的回调,函数'simplenews_subscription_manager_form'未找到,或者在第382行的/var/www/rajesh/ph/drupal/includes/form.inc中找不到函数名称。

任何人都可以向我展示在每个页面或首页显示此表单的解决方案。

提前致谢, 拉杰什

1 个答案:

答案 0 :(得分:1)

这是一个基于drupal的问题。请发布在drupal stackexchange.上以便快速回复

<?php
module_load_include('inc', 'simplenews', 'simplenews.subscription');
print drupal_get_form('simplenews_subscription_manager_form');
?>

像这样使用