나는 많은 작업을 표시하는보기가 있습니다. 작업은 콘텐츠 유형이며 해당 필드 중 하나는 theme이라는 분류법에 대한 참조입니다. taxonomy 테마는 하위 영역이라는 다른 분류 체계를 참조하는 필드가 있습니다. 하위 영역 분류에는 필드가 색상을 포함합니다. 뷰 제목의 배경을 하위 영역의 색으로 변경하고 싶습니다. 나는 초보자이기 때문에 그것을 성취 할 방법을 모른다. 난 단지 내보기 템플릿을 무시하여 시작할 수 있습니다. 하지만 taxonomy 용어를로드 할 수 없습니다.drupal 7 내부보기 템플릿의 분류에서 필드의 값을 가져올 수 없습니다.
/* views-view-unformatted--aufgaben.tpl.php
View reference field as a RELATIONSHIP:"field_task_themen" from taxonomy "Theme".
Field from taxonomy "Theme" that reference to subarea taxonomy : field_tax_subarea_ref
Field from subarea that store the color: field_tax_subarea_color
*/
// static color works
<?php
$color ="green";
?>
<?php if (!empty($title)): ?>
<h3 style='background-color: <?php print $color ?> '><?php $title;?>
</h3>
<?php endif; ?>