calendar-month-row.tpl.php 342 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * @file
  4. * Template to display a row
  5. *
  6. * - $inner: The rendered string of the row's contents.
  7. */
  8. $attrs = ($class) ? 'class="' . $class . '"': '';
  9. $attrs .= ($iehint > 0) ? ' iehint="' . $iehint . '"' : '';
  10. ?>
  11. <?php if ($attrs != ''):?>
  12. <tr <?php print $attrs?>>
  13. <?php else:?>
  14. <tr>
  15. <?php endif;?>
  16. <?php print $inner ?>
  17. </tr>