Projet

Général

Profil

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

root / drupal7 / sites / all / modules / calendar / theme / calendar-month-row.tpl.php @ 62e0cc08

1
<?php
2

    
3
/**
4
 * @file
5
 * Template to display a row.
6
 *
7
 * - $inner: The rendered string of the row's contents.
8
 */
9
$attrs = ($class) ? 'class="' . $class . '"' : '';
10
$attrs .= ($iehint > 0) ? ' iehint="' . $iehint . '"' : '';
11
?>
12
<?php if ($attrs != ''): ?>
13
<tr <?php print $attrs; ?>>
14
<?php else: ?>
15
<tr>
16
<?php endif; ?>
17
  <?php print $inner; ?>
18
</tr>