| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php // @version $Id: default_items.php 11917 2009-05-29 19:37:05Z ian $ 2 defined('_JEXEC') or die('Restricted access'); 3 ?> 4 5 <?php foreach ($this->items as $item) : ?> 6 <tr> 7 <td class="sectiontableentry" headers="Count"> 8 <?php echo (int)$item->count + 1; ?> 9 </td> 10 11 <?php if ($this->params->get('show_position')) : ?> 12 <td headers="Position" class="sectiontableentry<?php echo $item->odd; ?>"> 13 <?php echo $this->escape($item->con_position); ?> 14 </td> 15 <?php endif; ?> 16 17 <td height="20" class="sectiontableentry" headers="Name"> 18 <a href="<?php echo $item->link; ?>" class="category<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> 19 <?php echo $this->escape($item->name); ?></a> 20 </td> 21 22 <?php if ($this->params->get('show_email')) : ?> 23 <td headers="Mail" class="sectiontableentry<?php echo $item->odd; ?>"> 24 <?php echo $item->email_to; ?> 25 </td> 26 <?php endif; ?> 27 28 <?php if ($this->params->get('show_telephone')) : ?> 29 <td headers="Phone" class="sectiontableentry"> 30 <?php echo $this->escape($item->telephone); ?> 31 </td> 32 <?php endif; ?> 33 34 <?php if ($this->params->get('show_mobile')) : ?> 35 <td headers="Mobile" class="sectiontableentry<?php echo $item->odd; ?>"> 36 <?php echo $this->escape($item->mobile); ?> 37 </td> 38 <?php endif; ?> 39 40 <?php if ($this->params->get('show_fax')) : ?> 41 <td headers="Fax" class="sectiontableentry"> 42 <?php echo $this->escape($item->fax); ?> 43 </td> 44 <?php endif; ?> 45 </tr> 46 <?php endforeach; ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |