Now all modules are in core modules folder
This commit is contained in:
parent
5ba1cdfa0b
commit
05b6a91b0c
1907 changed files with 0 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
// $Id: calendar-week-multiple-node.tpl.php,v 1.1.2.1 2010/11/28 23:31:28 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="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>
|
Reference in a new issue