Files
@ 9264662acc93
Branch filter:
Location: hot67beta/components/com_search/views/search/tmpl/default_results.php - annotation
9264662acc93
1.4 KiB
text/x-php
header more stuff
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 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 c7d7e38b2269 | <?php defined('_JEXEC') or die('Restricted access'); ?>
<table class="contentpaneopen<?php echo $this->params->get( 'pageclass_sfx' ); ?>">
<tr>
<td>
<?php
foreach( $this->results as $result ) : ?>
<fieldset>
<div>
<span class="small<?php echo $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->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->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>
|