calendar-mini.tpl.php in Calendar 7
Same filename in this branch
Same filename and directory in other branches
Template to display a view as a mini calendar month.
$day_names: An array of the day of week names for the table header. $rows: An array of data for each day of the week. $view: The view. $min_date_formatted: The minimum date for this calendar in the format YYYY-MM-DD HH:MM:SS. $max_date_formatted: The maximum date for this calendar in the format YYYY-MM-DD HH:MM:SS.
$show_title: If the title should be displayed. Normally false since the title is incorporated into the navigation, but sometimes needed, like in the year view of mini calendars.
See also
template_preprocess_calendar_mini.
2 theme calls to calendar-mini.tpl.php
- template_preprocess_calendar_year in theme/
theme.inc  - Display a year view.
 - template_preprocess_calendar_year in calendar_multiday/
theme/ theme.inc  - Display a year view.
 
File
calendar_multiday/theme/calendar-mini.tpl.phpView source
<?php
/**
 * @file
 * Template to display a view as a mini calendar month.
 * 
 * @see template_preprocess_calendar_mini.
 *
 * $day_names: An array of the day of week names for the table header.
 * $rows: An array of data for each day of the week.
 * $view: The view.
 * $min_date_formatted: The minimum date for this calendar in the format YYYY-MM-DD HH:MM:SS.
 * $max_date_formatted: The maximum date for this calendar in the format YYYY-MM-DD HH:MM:SS.
 * 
 * $show_title: If the title should be displayed. Normally false since the title is incorporated
 *   into the navigation, but sometimes needed, like in the year view of mini calendars.
 * 
 */
//dsm('Display: '. $display_type .': '. $min_date_formatted .' to '. $max_date_formatted);
?>
<div class="calendar-calendar"><div class="month-view">
<?php
if ($view->date_info->show_title) {
  ?>
  <?php
  print theme('date_navigation', array(
    'view' => $view,
  ));
}
?> 
<table class="mini">
  <thead>
    <tr>
      <?php
foreach ($day_names as $cell) {
  ?>
        <th class="<?php
  print $cell['class'];
  ?>">
          <?php
  print $cell['data'];
  ?>
        </th>
      <?php
}
?>
    </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
  }
  ?>
      </tr>
    <?php
}
?>
  </tbody>
</table>
</div></div>