gpt4 book ai didi

php - Drupal 7 实体表单模块 : How to get value of a field with php?

转载 作者:行者123 更新时间:2023-12-04 05:29:25 25 4
gpt4 key购买 nike

我正在使用 entityform 模块来捕获一些用户提交的数据 http://drupal.org/project/entityform

我需要将一些实体字段值拉入我的模板之一。我试图用一些适用于常规节点字段的代码来做到这一点。

<?php echo $node->field_title[$node->language]['value']; ?>

我试过了..
<?php echo $entity->field_title[$node->language]['value']; ?>

但这不起作用。有人对我如何做到这一点有任何想法吗?

最佳答案

<?php
$field_data = field_get_items('entityform',$entityform,'field_title');
echo render(field_view_value('entityform',$entityform,'field_title',$field_data));
?>

field_get_items documentation , field_view_value documentation

关于php - Drupal 7 实体表单模块 : How to get value of a field with php?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12808340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com