| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php defined('_JEXEC') or die('Restricted access'); ?> 2 3 <table class="contentpaneopen<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> 4 <tr> 5 <td> 6 <?php 7 foreach( $this->results as $result ) : ?> 8 <fieldset> 9 <div> 10 <span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> 11 <?php echo $this->pagination->limitstart + $result->count.'. ';?> 12 </span> 13 <?php if ( $result->href ) : 14 if ($result->browsernav == 1 ) : ?> 15 <a href="<?php echo JRoute::_($result->href); ?>" target="_blank"> 16 <?php else : ?> 17 <a href="<?php echo JRoute::_($result->href); ?>"> 18 <?php endif; 19 20 echo $this->escape($result->title); 21 22 if ( $result->href ) : ?> 23 </a> 24 <?php endif; 25 if ( $result->section ) : ?> 26 <br /> 27 <span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> 28 (<?php echo $this->escape($result->section); ?>) 29 </span> 30 <?php endif; ?> 31 <?php endif; ?> 32 </div> 33 <div> 34 <?php echo $result->text; ?> 35 </div> 36 <?php 37 if ( $this->params->get( 'show_date' )) : ?> 38 <div class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>"> 39 <?php echo $result->created; ?> 40 </div> 41 <?php endif; ?> 42 </fieldset> 43 <?php endforeach; ?> 44 </td> 45 </tr> 46 <tr> 47 <td colspan="3"> 48 <div align="center"> 49 <?php echo $this->pagination->getPagesLinks( ); ?> 50 </div> 51 </td> 52 </tr> 53 </table>
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 |