Projet

Général

Profil

Paste
Télécharger (2,15 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / bootstrap / templates / views / views-view-table.tpl.php @ 27370441

1
<?php
2
/**
3
 * @file
4
 * Template to display a view as a table.
5
 *
6
 * Available variables:
7
 * - $title : The title of this group of rows.  May be empty.
8
 * - $header: An array of header labels keyed by field id.
9
 * - $caption: The caption for this table. May be empty.
10
 * - $header_classes: An array of header classes keyed by field id.
11
 * - $fields: An array of CSS IDs to use for each field id.
12
 * - $classes: A class or classes to apply to the table, based on settings.
13
 * - $row_classes: An array of classes to apply to each row, indexed by row
14
 *   number. This matches the index in $rows.
15
 * - $rows: An array of row items. Each row is an array of content.
16
 *   $rows are keyed by row number, fields within rows are keyed by field ID.
17
 * - $field_classes: An array of classes to apply to each field, indexed by
18
 *   field id, then row number. This matches the index in $rows.
19
 *
20
 * @ingroup templates
21
 */
22
?>
23
<?php if ($responsive): ?>
24
<div class="table-responsive">
25
<?php endif; ?>
26
<table <?php if ($classes): print 'class="' . $classes . '" '; endif; ?><?php print $attributes; ?>>
27
   <?php if (!empty($title) || !empty($caption)) : ?>
28
     <caption><?php print $caption . $title; ?></caption>
29
  <?php endif; ?>
30
  <?php if (!empty($header)) : ?>
31
    <thead>
32
      <tr>
33
        <?php foreach ($header as $field => $label): ?>
34
          <th <?php if ($header_classes[$field]): print 'class="' . $header_classes[$field] . '" '; endif; ?>>
35
            <?php print $label; ?>
36
          </th>
37
        <?php endforeach; ?>
38
      </tr>
39
    </thead>
40
  <?php endif; ?>
41
  <tbody>
42
    <?php foreach ($rows as $row_count => $row): ?>
43
      <tr <?php if ($row_classes[$row_count]): print 'class="' . implode(' ', $row_classes[$row_count]) . '"'; endif; ?>>
44
        <?php foreach ($row as $field => $content): ?>
45
          <td <?php if ($field_classes[$field][$row_count]): print 'class="' . $field_classes[$field][$row_count] . '" '; endif; ?><?php print drupal_attributes($field_attributes[$field][$row_count]); ?>>
46
            <?php print $content; ?>
47
          </td>
48
        <?php endforeach; ?>
49
      </tr>
50
    <?php endforeach; ?>
51
  </tbody>
52
</table>
53
<?php if ($responsive): ?>
54
  </div>
55
<?php endif; ?>