访问自定义模板中的Drupal Entity字段

时间:2015-07-08 23:29:21

标签: drupal drupal-7

首先让我说这是我在Drupal的第一个项目,我仍感到困惑,如果我的问题很愚蠢,我道歉。

我使用Entity API在Drupal 7中创建了一个自定义实体。自定义实体代表高尔夫球场。

我使用了本教程:http://www.sitepoint.com/series/build-your-own-custom-entities-in-drupal/ 然后我尝试添加自定义主题,为此我遵循了这个:https://www.drupal.org/node/1238606

我的回调函数如下所示:

function view_golf_course($id) {
  $courses = entity_load('golf_course', array($id));
  $course = $courses[$id];
  drupal_set_title($course->name);
  $output = entity_view('golf_course', array($course));
  $output += array(
    '#theme'     => 'golf_course',
    '#element'   => $output,
    '#view_mode' => 'full',
    '#language'  => LANGUAGE_NONE,
  );
  return $output;
}

这是我的hook_theme()

function golf_course_theme($existing, $type, $theme, $path) {
  return array(
    'golf_course' => array(
      'variables' => array('element' => null),
      'template' => 'golf_course',
    ),
  );
}

问题在于golf_course.tpl.php我只能以这种方式访问​​高尔夫球场变量(在本例中我将访问地址):

render($element['golf_course']['The Lakes Golf Club']['address']['#markup'])

正如你所看到的,为了访问地址,我必须使用'The Lakes Golf Club'(这是当前显示的高尔夫球场的名称)作为关键,但显然该名称将会改变每当我展示不同的高尔夫球场时,我的问题是:

如何在不使用高尔夫球场名称作为钥匙的情况下访问高尔夫球场的属性?

修改

entity_view()(http://www.drupalcontrib.org/api/drupal/contributions!entity!entity.module/function/entity_view/7)的文档说明如下:

  

返回值

     

可渲染数组,由实体类型和实体键入   标识符,如果存在,则使用实体名称 - 请参阅   ENTITY_ID()。如果没有关于如何查看实体的信息,   返回FALSE。

那么如何避免数组被实体名称键入?如果它被id键入,那就没问题,因为我在范围内有$id变量。

1 个答案:

答案 0 :(得分:0)

对于寻找这个问题答案的人: 如果查询的结果集包含多行,那么entity_view将创建一个具有空索引的数组,如下所示:

$element['golf_course']['']

现在您可以通过访问['#entity']数组来访问结果集中所有行的所有实体字段,如下所示:

$element['golf_course']['']['#entity'] // all golf courses
$element['golf_course']['']['#entity'][0] // first golf course in the result set
$element['golf_course']['']['#entity'][0]['label'] // label of first golf course
$element['golf_course']['']['#entity'][0]['address'] // address of first golf course

另外,如果你的模板是纯PHP的,你可以避免使用entity_view(),你会得到一个更清晰的数组(你没有['golf_course']['']['#entity']部分)。< / p>