calendar-month-col.tpl.php 484 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * Template to display a column
  5. *
  6. * - $item: The item to render within a td element.
  7. */
  8. $id = (isset($item['id'])) ? 'id="' . $item['id'] . '" ' : '';
  9. $date = (isset($item['date'])) ? ' date="' . $item['date'] . '" ' : '';
  10. ?>
  11. <td <?php print $id?>class="<?php print $item['class'] ?>" colspan="<?php print $item['colspan'] ?>" rowspan="<?php print $item['rowspan'] ?>"<?php print $date ?>>
  12. <div class="inner">
  13. <?php print $item['entry'] ?>
  14. </div>
  15. </td>