[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/themes/fusion/fusion_starter/ -> views-view-table--station-schedule-on-air.tpl.php (source)

   1  <?php
   2  // $Id: views-view-table.tpl.php,v 1.8 2009/01/28 00:43:43 merlinofchaos Exp $
   3  /**
   4   * @file views-view-table.tpl.php
   5   * Template to display a view as a table.
   6   *
   7   * - $title : The title of this group of rows.  May be empty.
   8   * - $header: An array of header labels keyed by field id.
   9   * - $fields: An array of CSS IDs to use for each field id.
  10   * - $class: A class or classes to apply to the table, based on settings.
  11   * - $row_classes: An array of classes to apply to each row, indexed by row
  12   *   number. This matches the index in $rows.
  13   * - $rows: An array of row items. Each row is an array of content.
  14   *   $rows are keyed by row number, fields within rows are keyed by field ID.
  15   * @ingroup views_templates
  16   */
  17  ?>
  18  <div style="float: left; font-size: 130%; padding: 6px 10px 0px 0px; ">On Air: </div>
  19  <table class="<?php print $class; ?>">
  20    <?php if (!empty($title)) : ?>
  21      <caption><?php print $title; ?></caption>
  22    <?php endif; ?>
  23    <thead>
  24      <tr>
  25        <?php foreach ($header as $field => $label): ?>
  26          <th class="views-field views-field-<?php print $fields[$field]; ?>">
  27            <?php print $label; ?>
  28          </th>
  29        <?php endforeach; ?>
  30      </tr>
  31    </thead>
  32    <tbody>
  33      <?php foreach ($rows as $count => $row): ?>
  34        <tr class="<?php print implode(' ', $row_classes[$count]); ?>">
  35          <?php foreach ($row as $field => $content): ?>
  36            <td class="views-field views-field-<?php print $fields[$field]; ?>">
  37              <?php print $content; ?>
  38            </td>
  39          <?php endforeach; ?>
  40        </tr>
  41      <?php endforeach; ?>
  42    </tbody>
  43  </table>


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7