| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: calendar-month-col.tpl.php,v 1.1.2.1 2010/11/28 23:31:28 karens Exp $ 3 /** 4 * @file 5 * Template to display a column 6 * 7 * - $item: The item to render within a td element. 8 */ 9 $id = (isset($item['id'])) ? 'id="' . $item['id'] . '" ' : ''; 10 $date = (isset($item['date'])) ? 'date="' . $item['date'] . '" ' : ''; 11 ?> 12 <td <?php print $id?>class="<?php print $item['class'] ?>" colspan="<?php print $item['colspan'] ?>" rowspan="<?php print $item['rowspan'] ?>"<?php print $date ?>> 13 <div class="inner"> 14 <?php print $item['entry'] ?> 15 </div> 16 </td>
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 |