Files
@ 7ec91347b83f
Branch filter:
Location: hot67beta/components/com_contact/views/category/tmpl/default_items.php - annotation
7ec91347b83f
1.1 KiB
text/x-php
there we go
c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 | <?php
/** $Id: default_items.php 10381 2008-06-01 03:35:53Z pasamio $ */
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<?php foreach($this->items as $item) : ?>
<tr class="sectiontableentry<?php echo $item->odd + 1; ?>">
<td align="right" width="5">
<?php echo $item->count +1; ?>
</td>
<td height="20">
<a href="<?php echo $item->link; ?>" class="category<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<?php echo $item->name; ?></a>
</td>
<?php if ( $this->params->get( 'show_position' ) ) : ?>
<td>
<?php echo $item->con_position; ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_email' ) ) : ?>
<td width="20%">
<?php echo $item->email_to; ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_telephone' ) ) : ?>
<td width="15%">
<?php echo $item->telephone; ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_mobile' ) ) : ?>
<td width="15%">
<?php echo $item->mobile; ?>
</td>
<?php endif; ?>
<?php if ( $this->params->get( 'show_fax' ) ) : ?>
<td width="15%">
<?php echo $item->fax; ?>
</td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
|