popsu-d7/sites/all/modules/calendar/theme/calendar-month-row.tpl.php
Bachir Soussi Chiadmi 1bc61b12ad first import
2015-04-08 11:40:19 +02:00

18 lines
342 B
PHP

<?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 . '"' : '';
?>
<?php if ($attrs != ''):?>
<tr <?php print $attrs?>>
<?php else:?>
<tr>
<?php endif;?>
<?php print $inner ?>
</tr>