| 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/templates/beez/html/com_search/search/ |
Upload File : |
<?php // @version $Id: default_results.php 11917 2009-05-29 19:37:05Z ian $
defined('_JEXEC') or die('Restricted access');
?>
<?php if (!empty($this->searchword)) : ?>
<div class="searchintro<?php echo $this->escape($this->params->get('pageclass_sfx')) ?>">
<p>
<?php echo JText::_('Search Keyword') ?> <strong><?php echo $this->escape($this->searchword) ?></strong>
<?php echo $this->result ?>
</p>
<p>
<a href="#form1" onclick="document.getElementById('search_searchword').focus();return false" onkeypress="document.getElementById('search_searchword').focus();return false" ><?php echo JText::_('Search_again') ?></a>
</p>
</div>
<?php endif; ?>
<?php if (count($this->results)) : ?>
<div class="results">
<h3><?php echo JText :: _('Search_result'); ?></h3>
<?php $start = $this->pagination->limitstart + 1; ?>
<ol class="list<?php echo $this->escape($this->params->get('pageclass_sfx')) ?>" start="<?php echo (int)$start ?>">
<?php foreach ($this->results as $result) : ?>
<li>
<?php if ($result->href) : ?>
<h4>
<a href="<?php echo JRoute :: _($result->href) ?>" <?php echo ($result->browsernav == 1) ? 'target="_blank"' : ''; ?> >
<?php echo $this->escape($result->title); ?></a>
</h4>
<?php endif; ?>
<?php if ($result->section) : ?>
<p><?php echo JText::_('Category') ?>:
<span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')) ?>">
<?php echo $this->escape($result->section); ?>
</span>
</p>
<?php endif; ?>
<?php echo $result->text; ?>
<span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')) ?>">
<?php echo $this->escape($result->created); ?>
</span>
</li>
<?php endforeach; ?>
</ol>
<?php echo $this->pagination->getPagesLinks(); ?>
</div>
<?php endif; ?>