实体引用在视图模式下使用其他字段

时间:2013-02-10 09:31:32

标签: drupal drupal-7 drupal-modules drupal-commerce

我在drupal 7中有一本学生书籍产品,他们有一本同伴教师的书籍产品。我想创建一个查看模式,显示学生用书(产品展示)以及教师用书的实体参考,这也是一本书籍产品。 事实是,我可以显示id,title或呈现的实体,但不能显示其他实体字段。我想要显示的是:

学生的ISDN: _ __ _ __

教师的ISDN: _ __ _ __

......其他产品领域(学生)......

我已经尝试了几个模块,比如显示套件,但没有,你能帮忙吗?我错过了什么?

2 个答案:

答案 0 :(得分:1)

快速解决方案是为您的内容类型创建新的节点模板。例如:node--student.tpl.php,然后使用以下代码作为示例:

$referenced_node = node_load($node->field_ref[LANGUAGE_NONE]['0']['target_id']);
print node_view($referenced_node, "teaser");

希望这有帮助。

答案 1 :(得分:1)

我是这样做的:

  // Initial weight
  $weight = 2;
  // Student's book entity
  $student_book_entity = $node->field_student_book[LANGUAGE_NONE][0]['entity'];

  // Get Student's book ISBN and alter some attributes
  $student_isbn_field = array_merge(field_view_field('commerce_product', $student_book_entity, 'field_book_isbn'), array(
      '#field_name' => 'field_students_book_isbn',
      '#title' => t('Student\'s Book ISBN'),
      '#weight' => $weight++,
    )
  );
  $node->content['field_students_book_isbn'] = $student_isbn_field;

  // Teacher's book entity
  $teachers_book_entity = $node->field_teacher_book[LANGUAGE_NONE][0]['entity'];

  // Get Teacher's book ISBN and alter some attributes
  $teacher_isbn_field = array_merge(field_view_field('commerce_product', $teachers_book_entity, 'field_book_isbn'), array(
      '#field_name' => 'field_teachers_book_isbn',
      '#title' => t('Teacher\'s Book ISBN'),
      '#weight' => $weight++,
    )
  );
  $node->content['field_teachers_book_isbn'] = $teacher_isbn_field;