我通过在视图显示中添加自定义 php 代码字段来使用视图 php,因此我有$data
可用的变量。在自定义 php 代码中,我正在渲染已添加字段集合关系的字段:
<?php
global $user;
$html = array();
if (count($data->field_field_poi_link) > 0) $html[] = 'foobar';
if ($user->uid != 0 && arg(0) == 'node' && node_access('update', 'foobar', $user)) {
$nid = arg(1);
// $html[] = '<a class="inl_edit" href="'.$data->_entity_properties['url'].'/edit?destination=node/'.$nid.'">edit</a>';
// $html[] = '<a class="inl_del" href="'.$data->_entity_properties['url'].'/delete?destination=node/'.$nid.'">delete</a>';
}
print join("\n",$html);
?>
在1 月 10 日实体 api 更新之前,该$data->_entity_properties
数组包含以下内容:
'_entity_properties' =>
array (
'url' => 'http://localhost:8888/project/field-collection/field-poi-link/39',
),
但现在,它不包含类似的东西。我无法编辑该特定条目。
如何创建一个链接来编辑每个字段集合的输入字段数据的一个特定值,例如http://localhost:8888/project/field-collection/field-pois/74/edit
在视图 php 字段中?