我有一个显示一堆任务的视图。任务是一种内容类型,它的一个字段是对称为主题的分类法的引用。分类主题有一个引用另一个名为 subarea 的分类的字段。分区分类具有字段包含颜色。我想将视图标题的背景更改为子区域的颜色。因为我是初学者,所以不知道如何实现。我只能从覆盖我的视图模板开始。但我无法加载分类术语。
/* 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; ?>