Drupal:添加两个其他字段
来自站长百科
假设你现有两个数字字段,名为field_product_price和field_postage_price。你希望创建一个计算型字段field_total_cost来对两个字段求和。创建一个新的计算型字段,名为'Total Cost',然后在计算型字段设置中:
Computed Code,计算型代码:$node_field[0]['value'] = $node->field_product_price[0]['value'] + $node->field_postage_price[0]['value'];
检查'Display this field'
Display Format,显示格式:$display = '$' . $node_field_item['value'];
检查'Store using the database settings below'
Data Type,日期类型: float(浮点)
Data Length,日期长度: 10,2
Default Value,默认值: 0.00
检查'Not NULL'
检查'Sortable'