如果选中单个复选框字段,则进行 Drupal 打印

发布于 2024-12-08 07:27:39 字数 519 浏览 0 评论 0原文

如果选中了 cck 单个复选框,我想打印类似“是的,已选中”的内容。 单个开/关复选框允许值为 no 和 yes。

复选框信息是 -

<input type="checkbox" class="form-checkbox" checked="checked" value="yes"
    id="edit-field-billing-terms-value" name="field_billing_terms[value]">

我正在尝试,但修改此代码失败了 -

<?php
  $node->field_billing_terms[value] . '<br />';
    if($node->field_billing_terms[value] == 'yes' ) {
      print "yes, checked";
    }
?>

有人可以给我一些指示,我哪里出错了?如果需要,可以提供更多信息。

I'd like to print something like "yes, checked" if a cck single checkbox is checked.
The single on/off checkbox has allowed values of no and yes.

checkbox info is -

<input type="checkbox" class="form-checkbox" checked="checked" value="yes"
    id="edit-field-billing-terms-value" name="field_billing_terms[value]">

I'm trying, and failing with modifications of this code -

<?php
  $node->field_billing_terms[value] . '<br />';
    if($node->field_billing_terms[value] == 'yes' ) {
      print "yes, checked";
    }
?>

Can someone give me some pointers where I'm going wrong? More info can be provided if needed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

打小就很酷 2024-12-15 07:27:39

当附加到节点对象时,字段通常位于从零开始的数组中,这应该可以解决您的问题:

$node->field_billing_terms[0]['value'] . '<br />';
if($node->field_billing_terms[0]['value'] == 'yes' ) {
  print "yes, checked";
}

Fields are normally in a zero based array when attached to the node object, this should fix your problem:

$node->field_billing_terms[0]['value'] . '<br />';
if($node->field_billing_terms[0]['value'] == 'yes' ) {
  print "yes, checked";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文