26 lines
961 B
PHP
26 lines
961 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* Template to display a summary of the days items as a calendar week node.
|
|
*
|
|
* @see template_preprocess_calendar_week_multiple_node.
|
|
*/
|
|
?>
|
|
<div class="view-item view-item-<?php print $view->name ?>">
|
|
<div class="calendar weekview" id="<?php print $curday ?>">
|
|
<?php foreach ($types as $type): ?>
|
|
<?php if ($view->date_info->style_max_items_behavior != 'more'): ?>
|
|
<?php print theme('calendar_stripe_stripe', $type); ?>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
<div class="view-item <?php print views_css_safe('view-item-'. $view->name) ?>">
|
|
<?php if ($view->date_info->style_max_items_behavior != 'more'): ?>
|
|
<div class="multiple-events">
|
|
<?php print l(t('Click to see all @count events', array('@count' => $count)), $link) ?>
|
|
</div>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="calendar-more"><?php print l(t('more'), $link) ?>»</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|