1 |
85ad3d82
|
Assos Assos
|
<?php
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
|
|
|
12 |
|
|
?>
|
13 |
|
|
<?php if (!empty($title)) : ?>
|
14 |
|
|
<h3><?php print $title; ?></h3>
|
15 |
|
|
<?php endif; ?>
|
16 |
|
|
<table class="<?php print $class; ?>"<?php print $attributes; ?>>
|
17 |
|
|
<?php if (!empty($caption)) : ?>
|
18 |
|
|
<caption><?php print $caption; ?></caption>
|
19 |
|
|
<?php endif; ?>
|
20 |
|
|
|
21 |
|
|
<tbody>
|
22 |
|
|
<?php foreach ($rows as $row_number => $columns): ?>
|
23 |
|
|
<tr <?php if ($row_classes[$row_number]) { print 'class="' . $row_classes[$row_number] .'"'; } ?>>
|
24 |
|
|
<?php foreach ($columns as $column_number => $item): ?>
|
25 |
|
|
<td <?php if ($column_classes[$row_number][$column_number]) { print 'class="' . $column_classes[$row_number][$column_number] .'"'; } ?>>
|
26 |
|
|
<?php print $item; ?>
|
27 |
|
|
</td>
|
28 |
|
|
<?php endforeach; ?>
|
29 |
|
|
</tr>
|
30 |
|
|
<?php endforeach; ?>
|
31 |
|
|
</tbody>
|
32 |
|
|
</table> |