123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- $params = array(
- 'view' => $view,
- 'granularity' => 'month',
- 'link' => FALSE,
- );
- ?>
- <div class="calendar-calendar"><div class="month-view">
- <?php if ($show_title): ?>
- <div class="date-nav-wrapper clear-block">
- <div class="date-nav">
- <div class="date-heading">
- <?php print theme('date_nav_title', $params) ?>
- </div>
- </div>
- </div>
- <?php endif; ?>
- <table class="mini">
- <thead>
- <tr>
- <?php foreach ($day_names as $cell): ?>
- <th class="<?php print $cell['class']; ?>">
- <?php print $cell['data']; ?>
- </th>
- <?php endforeach; ?>
- </tr>
- </thead>
- <tbody>
- <?php foreach ((array) $rows as $row): ?>
- <tr>
- <?php foreach ($row as $cell): ?>
- <td id="<?php print $cell['id']; ?>" class="<?php print $cell['class']; ?>">
- <?php print $cell['data']; ?>
- </td>
- <?php endforeach; ?>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- </div></div>
|