123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- ?>
- <table <?php if ($classes) { print 'class="'. $classes . '" '; } ?><?php print $attributes; ?>>
- <?php if (!empty($title) || !empty($caption)) : ?>
- <caption><?php print $caption . $title; ?></caption>
- <?php endif; ?>
- <?php if (!empty($header)) : ?>
- <thead>
- <tr>
- <?php foreach ($header as $field => $label): ?>
- <th <?php if ($header_classes[$field]) { print 'class="'. $header_classes[$field] . '" '; } ?>>
- <?php print $label; ?>
- </th>
- <?php endforeach; ?>
- </tr>
- </thead>
- <?php endif; ?>
- <tbody>
- <?php foreach ($rows as $row_count => $row): ?>
- <tr <?php if ($row_classes[$row_count]) { print 'class="' . implode(' ', $row_classes[$row_count]) .'"'; } ?>>
- <?php foreach ($row as $field => $content): ?>
- <td <?php if ($field_classes[$field][$row_count]) { print 'class="'. $field_classes[$field][$row_count] . '" '; } ?><?php print drupal_attributes($field_attributes[$field][$row_count]); ?>>
- <?php print $content; ?>
- </td>
- <?php endforeach; ?>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
|