编程语言
首页 > 编程语言> > 如何使用视图php创建一个链接来编辑视图中节点的特定字段值?

如何使用视图php创建一个链接来编辑视图中节点的特定字段值?

作者:互联网

我通过在我的视图显示中添加自定义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',
  ),

但现在,它没有包含这样的东西.我无法编辑那个特定的条目.

如何为视图php字段中的每个字段集合输入的字段数据(如http:// localhost:8888 / project / field-collection / field-pois / 74 / edit)创建一个链接来编辑一个特定值?

解决方法:

也许如果你使用views hooks会更好;
这比views_php更安全.
举个例子,你可以看到hook_views_pre_execute

标签:php,drupal,drupal-views,drupal-field-collection
来源: https://codeday.me/bug/20190708/1406522.html