| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: calendar-week-multiple-node.tpl.php,v 1.1.2.1 2010/11/28 23:31:28 karens Exp $ 3 /** 4 * @file 5 * Template to display a summary of the days items as a calendar week node. 6 * 7 * @see template_preprocess_calendar_week_multiple_node. 8 */ 9 ?> 10 <div class="view-item view-item-<?php print $view->name ?>"> 11 <div class="calendar weekview" id="<?php print $curday ?>"> 12 <?php foreach ($types as $type): ?> 13 <?php if ($view->date_info->style_max_items_behavior != 'more'): ?> 14 <?php print theme('calendar_stripe_stripe', $type); ?> 15 <?php endif; ?> 16 <?php endforeach; ?> 17 <div class="view-item <?php print views_css_safe('view-item-'. $view->name) ?>"> 18 <?php if ($view->date_info->style_max_items_behavior != 'more'): ?> 19 <div class="multiple-events"> 20 <?php print l(t('Click to see all @count events', array('@count' => $count)), $link) ?> 21 </div> 22 </div> 23 <?php else: ?> 24 <div class="calendar-more"><?php print l(t('more'), $link) ?>ยป</div> 25 <?php endif; ?> 26 </div> 27 </div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |