| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/news/components/com_search/views/search/tmpl/ |
Upload File : |
<?php defined('_JEXEC') or die('Restricted access'); ?>
<table class="contentpaneopen<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<tr>
<td>
<?php
foreach( $this->results as $result ) : ?>
<fieldset>
<div>
<span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php echo $this->pagination->limitstart + $result->count.'. ';?>
</span>
<?php if ( $result->href ) :
if ($result->browsernav == 1 ) : ?>
<a href="<?php echo JRoute::_($result->href); ?>" target="_blank">
<?php else : ?>
<a href="<?php echo JRoute::_($result->href); ?>">
<?php endif;
echo $this->escape($result->title);
if ( $result->href ) : ?>
</a>
<?php endif;
if ( $result->section ) : ?>
<br />
<span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
(<?php echo $this->escape($result->section); ?>)
</span>
<?php endif; ?>
<?php endif; ?>
</div>
<div>
<?php echo $result->text; ?>
</div>
<?php
if ( $this->params->get( 'show_date' )) : ?>
<div class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php echo $result->created; ?>
</div>
<?php endif; ?>
</fieldset>
<?php endforeach; ?>
</td>
</tr>
<tr>
<td colspan="3">
<div align="center">
<?php echo $this->pagination->getPagesLinks( ); ?>
</div>
</td>
</tr>
</table>