Drupal:drupal_get_form指定要搜索的文件
如何指定文件来搜索函数drupal_get_form?
How to specify file to search for a function drupal_get_form?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何指定文件来搜索函数drupal_get_form?
How to specify file to search for a function drupal_get_form?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您指的是用作页面回调的表单,则可以在
file
参数中指定文件名:在该示例中,函数“
MODULENAME_myform
”返回以下表单结构:drupal_get_form
用于构建页面“www.yoursite.com/my/form
”,并存储在文件“myform.inc
”中。If you mean a form used as page callback, the
file
parameter is where you can specify a filename:In that example, the function "
MODULENAME_myform
" that returns the form structure thatdrupal_get_form
uses to build the page "www.yoursite.com/my/form
" is stored in the file "myform.inc
".使用 include_once , require_once 或 需要添加表单所在的文件。 drupal_get_form 自动注意包含表单。
例如 :
use include_once , require_once or require for adding files where the form resides . drupal_get_form automatically takes care to include the form.
for example :