table.php 862 Bytes
Newer Older
Qiang Xue committed
1 2 3
<?php
use yii\helpers\Html;

4 5
/* @var $caption string */
/* @var $values array */
Qiang Xue committed
6 7 8 9 10 11
?>

<h3><?= $caption ?></h3>

<?php if (empty($values)): ?>

12
    <p>Empty.</p>
Qiang Xue committed
13

14
<?php else: ?>
15 16 17
    <div class="table-responsive">
        <table class="table table-condensed table-bordered table-striped table-hover" style="table-layout: fixed;">
            <thead>
18
            <tr>
19
                <th style="nowrap">Name</th>
20 21
                <th>Value</th>
            </tr>
22 23 24 25 26 27 28 29 30 31 32
            </thead>
            <tbody>
            <?php foreach ($values as $name => $value): ?>
                <tr>
                    <th style="white-space: normal"><?= Html::encode($name) ?></th>
                    <td style="overflow:auto"><?= Html::encode($value) ?></td>
                </tr>
            <?php endforeach; ?>
            </tbody>
        </table>
    </div>
Qiang Xue committed
33
<?php endif; ?>