pretty-calendar-week.tpl.php in Pretty Calendar 7
Theme implementation to display week line. That file useful when you need to show numbers of week.
Variables:
- $days: The array of day cells.
- $delta: Week number from beginning of month
1 theme call to pretty-calendar-week.tpl.php
- pretty_calendar_block_content in ./
pretty_calendar.module - Rendering calendar block content.
File
pretty-calendar-week.tpl.phpView source
<?php
/**
* @file
* Theme implementation to display week line.
* That file useful when you need to show numbers of week.
*
* Variables:
* - $days: The array of day cells.
* - $delta: Week number from beginning of month
*/
?>
<div class="pretty-calendar-week">
<?php
foreach ($days as $day) {
print $day;
}
?>
</div>