drupal_render 不返回任何内容,具体取决于之前的脚本和 php 标签

发布于 2024-11-30 20:58:00 字数 577 浏览 0 评论 0原文

我创建了一个模板 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

━╋う一瞬間旳綻放 2024-12-07 20:58:00

我遇到了一个错误,它损坏了一些表单字段数据。我修复了该错误,drupal_render 现在工作正常。

I had a bug which corrupted some of the formfield data. I fixed the bug and drupal_render now works fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文