calendar-month-col.tpl.php in Calendar 7
Same filename and directory in other branches
1 theme call to calendar-month-col.tpl.php
- calendar_build_month in calendar_multiday/
includes/ calendar.inc - Build one month.
File
calendar_multiday/theme/calendar-month-col.tpl.phpView source
<?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>