18 lines
342 B
PHP
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>
|