Drupal 7视图查看模板

时间:2014-11-24 15:51:22

标签: php arrays drupal drupal-7 drupal-views

在我的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>

任何人如何得到建议?

0 个答案:

没有答案