popsu-d7/sites/all/modules/calendar/theme/calendar-month-col.tpl.php
Bachir Soussi Chiadmi 1bc61b12ad first import
2015-04-08 11:40:19 +02:00

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>