在我的viewv-view-fields中 - myView.tpl.php 我已经设置了我希望输出看起来像
的样式if(isset($fields['title']) && isset($fields['file'])) {
$category = $fields['field_category']->content;
$file_link = $fields['file']->raw;
$title = $fields['title']->content;
if($category == "2014"){
print '<tr><td><a href="'.$file_link.'">'.$title.'</a> </td> </tr>';
} else if($category == "2013") {
print '<tr><td><a href="'.$file_link.'">'.$title.'</a> </td> </tr>';
}
我可以,如果我想输出只有一个类别白色我的ifs 但是如果我想在一个表格中输出类别2014并且在另一个表格中输出另一个类别,那就麻烦了。
在我的views-view中 - myView.tpl.php我只能打印行并且它同时选择两者,我试图将链接放入一个数组但是它创建了一个包含每个链接的新数组,所以我有点卡在这里< / p>
<table class="table table-hover">
<thead>
<tr><th>2014</th></tr>
</thead>
<tbody>
<?php if ($rows):
print $rows;
?>
<?php endif; ?>
</tbody>
</table>
<table class="table table-hover">
<thead>
<tr><th>2013</th></tr>
</thead>
<tbody>
<?php if ($rows):
print $rows;
?>
<?php endif; ?>
</tbody>
</table>
任何人如何得到建议?