drupal_render 不返回任何内容,具体取决于之前的脚本和 php 标签
我创建了一个模板 my-node-form.tpl.php,以主题化特定的表单。如果这是模板内容,那么 drupal_render 工作正常:
<?php
?>
<?php
dsm ("debug. inside my-node-form.tpl.php");
foreach ($fieldnames as $fieldname){
print drupal_render($form[$fieldname]);
}
return;
?>
但是,如果两组 php 标签之间有一个空行,则 drupal_render 什么也不返回:
<?php
?>
<?php
dsm ("debug. inside my-node-form.tpl.php");
foreach ($fieldnames as $fieldname){
print drupal_render($form[$fieldname]);
}
return;
?>
有人知道这是为什么吗?
I created a template, my-node-form.tpl.php, to theme a particular form. If this is the template content, then drupal_render works fine:
<?php
?>
<?php
dsm ("debug. inside my-node-form.tpl.php");
foreach ($fieldnames as $fieldname){
print drupal_render($form[$fieldname]);
}
return;
?>
However, if there is a blank line between the two sets of php-tags, then drupal_render returns nothing:
<?php
?>
<?php
dsm ("debug. inside my-node-form.tpl.php");
foreach ($fieldnames as $fieldname){
print drupal_render($form[$fieldname]);
}
return;
?>
Anyone know why this is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了一个错误,它损坏了一些表单字段数据。我修复了该错误,drupal_render 现在工作正常。
I had a bug which corrupted some of the formfield data. I fixed the bug and drupal_render now works fine.