Back to theming information.
This is the default theme template used for this style.
<?php // $Id: views-view-table.tpl.php,v 1.6 2008/06/25 22:05:11 merlinofchaos Exp $ /** * @file views-view-table.tpl.php * Template to display a view as a table. * * - $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. * - $rows: An array of row items. Each row is an array of content * keyed by field ID. * @ingroup views_templates */ ?> <table class="<?php print $class; ?>"> <?php if (!empty($title)) : ?> <caption><?php print $title; ?></caption> <?php endif; ?> <thead> <tr> <?php foreach ($header as $field => $label): ?> <th class="views-field views-field-<?php print $fields[$field]; ?>"> <?php print $label; ?> </th> <?php endforeach; ?> </tr> </thead> <tbody> <?php foreach ($rows as $count => $row): ?> <tr class="<?php print ($count % 2 == 0) ? 'even' : 'odd';?>"> <?php foreach ($row as $field => $content): ?> <td class="views-field views-field-<?php print $fields[$field]; ?>"> <?php print $content; ?> </td> <?php endforeach; ?> </tr> <?php endforeach; ?> </tbody> </table>