4

我通过在视图显示中添加自定义 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 字段中?

4

1 回答 1

1

如果您使用视图挂钩可能会更好;这比views_php 更安全。例如,您可以看到hook_views_pre_execute

于 2014-01-25T14:57:10.110 回答