Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php $this->extend('block_searchable'); ?>
-
- <?php $this->block('content'); ?>
-
- <table id="<?= $this->id ?>" class="table">
- <?php if ($this->summary): ?>
- <caption><?= $this->summary ?></caption>
- <?php endif; ?>
-
- <?php if ($this->useHeader): ?>
- <thead>
- <tr>
- <?php foreach ($this->header as $col): ?>
- <th class="<?= $col['class'] ?>"><?= $col['content'] ?></th>
- <?php endforeach; ?>
- </tr>
- </thead>
- <?php endif; ?>
-
- <?php if ($this->useFooter): ?>
- <tfoot>
- <tr>
- <?php foreach ($this->footer as $col): ?>
- <td class="<?= $col['class'] ?>"><?= $col['content'] ?></td>
- <?php endforeach; ?>
- </tr>
- </tfoot>
- <?php endif; ?>
-
- <tbody>
- <?php foreach ($this->body as $class => $row): ?>
- <tr class="<?= $class ?>">
- <?php foreach ($row as $i => $col): ?>
- <?php if (0 == $i && $this->useLeftTh): ?>
- <th scope="row" class="<?= $col['class'] ?>"><?= $col['content'] ?></th>
- <?php else: ?>
- <td class="<?= $col['class'] ?>"><?= $col['content'] ?></td>
- <?php endif; ?>
- <?php endforeach; ?>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
-
- <?php $this->endblock(); ?>
|