New module 'Calendar'
This commit is contained in:
parent
280a1af4fe
commit
f697b66461
99 changed files with 13284 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
// $Id: calendar-week-multiple-node.tpl.php,v 1.1.2.5 2010/11/21 13:19:37 karens Exp $
|
||||
/**
|
||||
* @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="<?php print $curday; ?> calendar weekview">
|
||||
<?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>
|
Reference in a new issue