123 lines
4.5 KiB
PHP
123 lines
4.5 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* Template to display a view as a calendar week.
|
|
*
|
|
* @see template_preprocess_calendar_week.
|
|
*
|
|
* $day_names: An array of the day of week names for the table header.
|
|
* $rows: The rendered data for this week.
|
|
*
|
|
* For each day of the week, you have:
|
|
* $rows['date'] - the date for this day, formatted as YYYY-MM-DD.
|
|
* $rows['datebox'] - the formatted datebox for this day.
|
|
* $rows['empty'] - empty text for this day, if no items were found.
|
|
* $rows['all_day'] - an array of formatted all day items.
|
|
* $rows['items'] - an array of timed items for the day.
|
|
* $rows['items'][$time_period]['hour'] - the formatted hour for a time period.
|
|
* $rows['items'][$time_period]['ampm'] - the formatted ampm value, if any for a time period.
|
|
* $rows['items'][$time_period]['values'] - An array of formatted items for a time period.
|
|
*
|
|
* $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.
|
|
*
|
|
*/
|
|
//dsm('Display: '. $display_type .': '. $min_date_formatted .' to '. $max_date_formatted);
|
|
//dsm($rows);
|
|
//dsm($items);
|
|
$index = 0;
|
|
?>
|
|
|
|
<div class="calendar-calendar"><div class="week-view">
|
|
<table class="full">
|
|
<thead>
|
|
<tr>
|
|
<?php if($by_hour_count > 0 || !empty($start_times)) :?>
|
|
<th class="calendar-agenda-hour"><?php print t('Time')?></th>
|
|
<?php endif;?>
|
|
<?php foreach ($day_names as $cell): ?>
|
|
<th class="<?php print $cell['class']; ?>">
|
|
<?php print $cell['data']; ?>
|
|
</th>
|
|
<?php endforeach; ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php for ($i = 0; $i < $multiday_rows; $i++): ?>
|
|
<?php
|
|
$colpos = 0;
|
|
$rowclass = "all-day";
|
|
if( $i == 0) {
|
|
$rowclass .= " first";
|
|
}
|
|
if( $i == $multiday_rows - 1) {
|
|
$rowclass .= " last";
|
|
}
|
|
?>
|
|
<tr class="<?php print $rowclass?>">
|
|
<?php if($i == 0 && ($by_hour_count > 0 || !empty($start_times))) :?>
|
|
<td class="<?php print $agenda_hour_class ?>" rowspan="<?php print $multiday_rows?>">
|
|
<span class="calendar-hour"><?php print t('All day', array(), array('context' => 'datetime'))?></span>
|
|
</td>
|
|
<?php endif; ?>
|
|
<?php for($j = 0; $j < 6; $j++): ?>
|
|
<?php $cell = (empty($all_day[$j][$i])) ? NULL : $all_day[$j][$i]; ?>
|
|
<?php if($cell != NULL && $cell['filled'] && $cell['wday'] == $j): ?>
|
|
<?php for($k = $colpos; $k < $cell['wday']; $k++) : ?>
|
|
<td class="multi-day no-entry"><div class="inner"> </div></td>
|
|
<?php endfor;?>
|
|
<td colspan="<?php print $cell['colspan']?>" class="multi-day">
|
|
<div class="inner">
|
|
<?php print $cell['entry']?>
|
|
</div>
|
|
</td>
|
|
<?php $colpos = $cell['wday'] + $cell['colspan']; ?>
|
|
<?php endif; ?>
|
|
<?php endfor; ?>
|
|
<?php for($j = $colpos; $j < 7; $j++) : ?>
|
|
<td class="multi-day no-entry"><div class="inner"> </div></td>
|
|
<?php endfor;?>
|
|
</tr>
|
|
<?php endfor; ?>
|
|
<?php foreach ($items as $time): ?>
|
|
<tr class="not-all-day">
|
|
<td class="calendar-agenda-hour">
|
|
<span class="calendar-hour"><?php print $time['hour']; ?></span><span class="calendar-ampm"><?php print $time['ampm']; ?></span>
|
|
</td>
|
|
<?php $curpos = 0; ?>
|
|
<?php foreach ($columns as $index => $column): ?>
|
|
<?php $colpos = (isset($time['values'][$column][0])) ? $time['values'][$column][0]['wday'] : $index; ?>
|
|
<?php for ($i = $curpos; $i < $colpos; $i++): ?>
|
|
<td class="calendar-agenda-items single-day">
|
|
<div class="calendar">
|
|
<div class="inner"> </div>
|
|
</div>
|
|
</td>
|
|
<?php endfor; ?>
|
|
<?php $curpos = $colpos + 1;?>
|
|
<td class="calendar-agenda-items single-day">
|
|
<div class="calendar">
|
|
<div class="inner">
|
|
<?php if(!empty($time['values'][$column])) :?>
|
|
<?php foreach($time['values'][$column] as $item) :?>
|
|
<?php print $item['entry'] ?>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<?php endforeach; ?>
|
|
<?php for ($i = $curpos; $i < 7; $i++): ?>
|
|
<td class="calendar-agenda-items single-day">
|
|
<div class="calendar">
|
|
<div class="inner"> </div>
|
|
</div>
|
|
</td>
|
|
<?php endfor; ?>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div></div>
|