16 lines
484 B
PHP
16 lines
484 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* Template to display a column
|
|
*
|
|
* - $item: The item to render within a td element.
|
|
*/
|
|
$id = (isset($item['id'])) ? 'id="' . $item['id'] . '" ' : '';
|
|
$date = (isset($item['date'])) ? ' date="' . $item['date'] . '" ' : '';
|
|
?>
|
|
<td <?php print $id?>class="<?php print $item['class'] ?>" colspan="<?php print $item['colspan'] ?>" rowspan="<?php print $item['rowspan'] ?>"<?php print $date ?>>
|
|
<div class="inner">
|
|
<?php print $item['entry'] ?>
|
|
</div>
|
|
</td>
|