This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/calendar/calendar_multiday/theme/calendar-month-row.tpl.php

17 lines
341 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>