|
Drupal example source code file (calendar-mini.tpl.php)
The calendar-mini.tpl.php Drupal example source code
<?php
// $Id: calendar-mini.tpl.php,v 1.3 2010/12/30 15:38:02 karens Exp $
/**
* @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)); ?>
<?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>
Other Drupal examples (source code examples)Here is a short list of links related to this Drupal calendar-mini.tpl.php source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
our drupal tutorials and examples
Sponsored by:
Mat-Su Valley Programming (Wasilla and Palmer, Alaska)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.