| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/newsite/plugins/system/t3/base-bs3/html/com_finder/search/ |
Upload File : |
<?php
/**
* @package Joomla.Site
* @subpackage com_finder
*
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die;
?>
<script type="text/javascript">
jQuery(function($) {
<?php if ($this->params->get('show_advanced', 1)) : ?>
/*
* This segment of code adds the slide effect to the advanced search box.
*/
var $searchSlider = $('#advanced-search');
if ($searchSlider.length)
{
<?php if (!$this->params->get('expand_advanced', 0)) : ?>
$searchSlider.hide();
<?php endif; ?>
$('#advanced-search-toggle').on('click', function(e)
{
e.stopPropagation();
e.preventDefault();
$searchSlider.slideToggle();
});
}
/*
* This segment of code disables select boxes that have no value when the
* form is submitted so that the URL doesn't get blown up with null values.
*/
if ($('#finder-search').length)
{
$('#finder-search').on('submit', function(e){
e.stopPropagation();
if ($searchSlider.length)
{
// Disable select boxes with no value selected.
$searchSlider.find('select').each(function(index, el) {
var $el = $(el);
if(!$el.val()){
$el.attr('disabled', 'disabled');
}
});
}
});
}
<?php endif; ?>
/*
* This segment of code sets up the autocompleter.
*/
<?php if ($this->params->get('show_autosuggest', 1)) : ?>
<?php JHtml::_('script', 'com_finder/autocompleter.js', false, true); ?>
var url = '<?php echo JRoute::_('index.php?option=com_finder&task=suggestions.display&format=json&tmpl=component', false); ?>';
var completer = new Autocompleter.Request.JSON(document.getElementById("q"), url, {'postVar': 'q'});
<?php endif; ?>
});
</script>
<form id="finder-search" action="<?php echo JRoute::_($this->query->toURI()); ?>" method="get" class="form-inline">
<?php echo $this->getFields(); ?>
<?php
/*
* DISABLED UNTIL WEIRD VALUES CAN BE TRACKED DOWN.
*/
if (false && $this->state->get('list.ordering') !== 'relevance_dsc') : ?>
<input type="hidden" name="o" value="<?php echo $this->escape($this->state->get('list.ordering')); ?>" />
<?php endif; ?>
<fieldset class="word">
<div class="form-group">
<label for="q">
<?php echo JText::_('COM_FINDER_SEARCH_TERMS'); ?>
</label>
<input type="text" name="q" id="q" size="30" value="<?php echo $this->escape($this->query->input); ?>" class="inputbox" />
</div>
<div class="form-group">
<?php if ($this->escape($this->query->input) != '' || $this->params->get('allow_empty_search')):?>
<button id="smartsearch-btn" name="Search" type="submit" class="btn btn-primary"><span class="fa fa-search"></span> <?php echo JText::_('JSEARCH_FILTER_SUBMIT');?></button>
<?php else: ?>
<button id="smartsearch-btn" name="Search" type="submit" class="btn btn-primary disabled"><span class="fa fa-search"></span> <?php echo JText::_('JSEARCH_FILTER_SUBMIT');?></button>
<?php endif; ?>
<?php if ($this->params->get('show_advanced', 1)) : ?>
<a href="#advancedSearch" data-toggle="collapse" class="btn btn-default"><span class="fa fa-list"></span> <?php echo JText::_('COM_FINDER_ADVANCED_SEARCH_TOGGLE'); ?></a>
<?php endif; ?>
</div>
</fieldset>
<?php if ($this->params->get('show_advanced', 1)) : ?>
<div id="advancedSearch" class="collapse">
<hr />
<?php if ($this->params->get('show_advanced_tips', 1)) : ?>
<div class="advanced-search-tip">
<?php echo JText::_('COM_FINDER_ADVANCED_TIPS'); ?>
</div>
<hr />
<?php endif; ?>
<div id="finder-filter-window">
<?php echo JHtml::_('filter.select', $this->query, $this->params); ?>
</div>
</div>
<?php endif; ?>
</form>