You are here

calendar-month-row.tpl.php in Calendar 6.2

File

calendar_multiday/theme/calendar-month-row.tpl.php
View source
<?php

/**
 * @file
 * Template to display a row
 * 
 * - $inner: The rendered string of the row's contents.
 */
$attrs = $class ? 'class="' . $class . '"' : '';
$attrs .= $iehint > 0 ? ' iehint="' . $iehint . '"' : '';
$attrs .= $week > 0 ? ' week="' . $week . '"' : '';
if ($attrs != '') {
  ?>
<tr <?php

  print $attrs;
  ?>>
<?php

}
else {
  ?>
<tr>
<?php

}
?>
  <?php

print $inner;
?>
</tr>