Projet

Général

Profil

Paste
Télécharger (342 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / calendar / theme / calendar-month-row.tpl.php @ 13755f8d

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>