HEX
Server: Apache
System: Linux darrell.nocdirect.com 4.18.0-513.18.2.el8_9.x86_64 #1 SMP Sat Mar 30 06:10:41 EDT 2024 x86_64
User: joderbya (1358)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/joderbya/matolamultimedia.com/modules/mod_s5_live_search/tmpl/default.php
<?php defined('_JEXEC') or die('Restricted access');
$app = JFactory::getApplication(); #
$isSef = $app->getCfg( 'sef' ); #

$brr = strtolower($_SERVER['HTTP_USER_AGENT']);
$browser = "other";
$url = JURI::root().'modules/mod_s5_live_search/';

if(strrpos($brr,"msie 6") > 1) {
$is_ie6 = "yes";}
else {$is_ie6 = "no";}

?>

<link href="<?php echo $url ?>css/s5_ls.css" property="stylesheet" rel="stylesheet" type="text/css" media="screen" />


<?php if ($is_ie6 == "yes") { ?>
<style>
#s5_ls_close {
	background:none;
	filter:progid:dximagetransform.microsoft.alphaimageloader(src='<?php echo $url ?>images/s5_exit.png', sizingmethod='crop');}
</style>
<?php } ?>


<form name="s5_search_form" id="s5_search_form" action="<?php echo JURI::Base()?>" method="get">
<div class="search<?php echo $params->get('moduleclass_sfx') ?>">
		<?php
		    $output = '
			<input name="searchword" id="mod-search-searchword" maxlength="'.$maxlength.'" class="inputbox'.$moduleclass_sfx.'" type="text" size="'.$width.'" value="'.$text.'"  onblur="if(this.value==\'\') this.value=\''.$text.'\';" onfocus="if(this.value==\''.$text.'\') this.value=\'\';" onkeyup="s5AjaxSearch();" />
				<div>
					<div style="background:url('.JURI::base().'modules/mod_s5_live_search/images/loading.gif'.') no-repeat; display:none; margin-left:'.$icon_ml.'px; margin-top:'.$icon_mt.'px; height:'.$icon_height.'px;width:16px" id="loading_img"></div>
				</div>';
			if ($button == "Yes") :
			    if ($imagebutton) :
			        $button = '<input type="image" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" src="'.$img.'" onclick="this.form.searchword.focus();"/>';
			    else :
			        $button = '<input type="submit" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" onclick="this.form.searchword.focus();"/>';
			    endif;

			switch ($button_pos) :
			    case 'top' :
				    $button = $button.'<br />';
				    $output = $button.$output;
				    break;

			    case 'bottom' :
				    $button = '<br />'.$button;
				    $output = $output.$button;
				    break;

			    case 'right' :
				    $output = $output.$button;
				    break;

			    case 'left' :
			    default :
				    $output = $button.$output;
				    break;
			endswitch;

			endif;

			echo $output;

		$brr = strtolower($_SERVER['HTTP_USER_AGENT']);
		$browser = "other";

		if(strrpos($brr,"msie 6") > 1) {
		$is_ie6 = "yes";}
		else {$is_ie6 = "no";}

		if(strrpos($brr,"msie 7") > 1) {
		$is_ie7 = "yes";}
		else {$is_ie7 = "no";}

		if(strrpos($brr,"msie 8") > 1) {
		$is_ie8 = "yes";}
		else {$is_ie8 = "no";}


		?>
	</div>
	<input type="hidden" name="searchphrase" value="<?php echo $params->get("searchphrase")?>"/>
	<input type="hidden" name="limit" id="s5_live_search_limit" value="" />
	<input type="hidden" name="ordering" value="<?php echo $params->get("ordering")?>" />
	<input type="hidden" name="view" value="search" />
	<input type="hidden" name="Itemid" value="99999999" />
	<input type="hidden" name="option" value="com_search" />
   	</form>
<div id="s5_ls_outer_wrap" style="margin-top:<?php echo $_SESSION['popup_mt'] ?>px; margin-right:<?php echo $_SESSION['popup_mr'] ?>px; margin-bottom:<?php echo $_SESSION['popup_mb'] ?>px; margin-left:<?php echo $_SESSION['popup_ml'] ?>px; border:solid <?php echo $border_size ?>px #<?php echo $border_color ?>; opacity:.0; <?php if ($is_ie6 == "yes" || $is_ie7 == "yes") { ?>filter: alpha(opacity=0); -moz-opacity: 0;<?php } ?> display:none; width: <?php echo $popupWidth; ?>px;"></div>
<div id="search_tmpdiv" style="visibility:hidden;display:none;"></div>
<script type="text/javascript">//<![CDATA[
	var limit = '<?php echo $params->get('limit', '10'); ?>';
	var ordering = '<?php echo $params->get('ordering', 'newest');  ?>';
	var searchPhrase = '<?php echo $params->get('searchphrase', 'any'); ?>';

	function closeResultDiv() {
		var outerWrap = document.getElementById('s5_ls_outer_wrap');
		outerWrap.innerHTML = '';
		opacity_s5_ls('s5_ls_outer_wrap', 100, 0, 500);
		outerWrap.style.display = "none";
		document.getElementById('search_tmpdiv').innerHTML = "";
	}

	function openResultDiv() {
		opacity_s5_ls('s5_ls_outer_wrap', 0, 100, 500);
		document.getElementById("s5_ls_outer_wrap").style.display = "block";
		document.getElementById('search_tmpdiv').innerHTML = "";
	}


	function s5AjaxSearch() {
		var curtime = new Date();
		var url = 'index2.php';
		if(document.getElementById('mod-search-searchword').value == ''){
			closeResultDiv();
		}
		else{
			var inputTag = document.getElementById('mod-search-searchword');
			if (inputTag.value.length < 3) {
				return ;
			}
			closeResultDiv();
			//Show the loading icon
			var loadingImgTag = document.getElementById('loading_img') ;
			loadingImgTag.style.display = '';
			//Build the url
			<?php if ($isSef == "0") { ?>
			var url = '<?php echo  JURI::base(); ?>' + 'index.php?option=com_search' ;
			<?php } ?>
			<?php if ($isSef == "1") { ?>
			var url = '<?php echo  JURI::base(); ?>' + 'index.php?option=com_search' ;
			<?php } ?>
			url =  url + '&view=search';
			url =  url + '&layout=s5_live_search';
			url = url + '&searchphrase=' + searchPhrase;
			url = url + '&ordering=' + ordering;
			url = url + '&limit=' + limit;
			url = url + '&searchword=' + document.getElementById('mod-search-searchword').value ;
			//url = url + '&limit=' + limit;
			//url = url + '&results_text=' + '<?php echo $moreResultsText; ?>';
			//url = url + '&no_results_text=' + '<?php echo $noResultsText; ?>';
			url = url + '&r=' + curtime.getTime();
			jx.load(url, function (data) {
					document.getElementById('loading_img').style.display = 'none' ;
					document.getElementById('search_tmpdiv').innerHTML = data ;
					document.getElementById('s5_ls_outer_wrap').innerHTML = document.getElementById('s5_search_results').innerHTML;;
					openResultDiv();
				}
			) ;
		}
	}
//]]></script>