first import
This commit is contained in:
17
sites/all/modules/calendar/theme/calendar-month-row.tpl.php
Normal file
17
sites/all/modules/calendar/theme/calendar-month-row.tpl.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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>
|
Reference in New Issue
Block a user