This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/calendar/theme/calendar-month-multiple-node.tpl.php

27 lines
963 B
PHP

<?php
/**
* @file
* Template to display a summary of the days items as a calendar month node.
*
*
* @see template_preprocess_calendar_month_multiple_node.
*/
?>
<div class="view-item view-item-<?php print $view->name ?>">
<div class="<?php print $curday; ?> calendar monthview">
<?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>