You are here

views-view-watchdog-table.tpl.php in Views Watchdog 6.2

views-view-watchdog-table.tpl.php Default theme implementation to display a view as a watchdog table.

Available variables:

  • $title : The title of this group of rows. May be empty.
  • $header: An array of header labels keyed by field id.
  • $fields: An array of CSS IDs to use for each field id.
  • $class: A class or classes to apply to the table, based on settings.
  • $row_classes: An array of classes to apply to each row, indexed by row number. This matches the index in $rows.
  • $rows: An array of row items. Each row is an array of content. $rows are keyed by row number, fields within rows are keyed by field ID.

File

views/theme/views-view-watchdog-table.tpl.php
View source
<?php

/**
 * @file views-view-watchdog-table.tpl.php
 * Default theme implementation to display a view as a watchdog table.
 *
 * Available variables:
 * - $title : The title of this group of rows.  May be empty.
 * - $header: An array of header labels keyed by field id.
 * - $fields: An array of CSS IDs to use for each field id.
 * - $class: A class or classes to apply to the table, based on settings.
 * - $row_classes: An array of classes to apply to each row, indexed by row
 *   number. This matches the index in $rows.
 * - $rows: An array of row items. Each row is an array of content.
 *   $rows are keyed by row number, fields within rows are keyed by field ID.
 *
 * @see template_preprocess()
 * @see template_preprocess_views_view_watchdog_table()
 *
 * @ingroup views_templates
 */
?>
<table class="<?php

print $class;
?>"<?php

print $attributes;
?>>
  <?php

if (!empty($title)) {
  ?>
    <caption><?php

  print $title;
  ?></caption>
  <?php

}
?>
  <thead>
    <tr>
      <?php

foreach ($header as $field => $label) {
  ?>
        <th class="views-field views-field-<?php

  print $fields[$field];
  ?>">
          <?php

  print $label;
  ?>
        </th>
      <?php

}
?>
    </tr>
  </thead>
  <tbody>
    <?php

foreach ($rows as $count => $row) {
  ?>
      <tr class="<?php

  print implode(' ', $row_classes[$count]);
  ?>">
        <?php

  foreach ($row as $field => $content) {
    ?>
          <td class="views-field views-field-<?php

    print $fields[$field];
    ?>">
            <?php

    print $content;
    ?>
          </td>
        <?php

  }
  ?>
      </tr>
    <?php

}
?>
  </tbody>
</table>