| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.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 : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/templates/stmartin/html/mod_search/ |
Upload File : |
<?php
/**
* @package Joomla.Site
* @subpackage mod_search
*
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
include_once(__DIR__ . '../../settings_search.php');
// Including fallback code for the placeholder attribute in the search field.
\Joomla\CMS\HTML\HTMLHelper::_('jquery.framework');
\Joomla\CMS\HTML\HTMLHelper::_('script', 'system/html5fallback.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));
if ($width)
{
$moduleclass_sfx .= ' ' . 'mod_search' . $module->id;
$css = 'div.mod_search' . $module->id . ' input[type="search"]{ width:auto; }';
\Joomla\CMS\Factory::getDocument()->addStyleDeclaration($css);
$width = ' size="' . $width . '"';
}
else
{
$width = '';
}
?>
<div class="tck-search search<?php echo $moduleclass_sfx; ?>">
<form action="<?php echo \Joomla\CMS\Router\Route::_('index.php'); ?>" method="post" class="form-inline">
<?php
$output = '';
if (TCK_SEARCH_SHOW_LABEL == 1) $output .= '<label for="mod-search-searchword' . $module->id . '" class="tck-search-label">' . $label . '</label> ';
$searchplaceholder = '';
if (TCK_SEARCH_PLACEHOLDER == 1) $searchplaceholder = 'placeholder="' . $text . '"';
$output .= '<input name="searchword" id="mod-search-searchword' . $module->id . '" maxlength="' . $maxlength . '" class="inputbox search-query input-medium tck-search-field" type="search"' . $width;
$output .= ' ' . $searchplaceholder . ' />';
$searchicon = (TCK_SEARCH_SHOW_ICON ? '<span class="' . TCK_SEARCH_ICON . '"></span> ' : '');
if ($button) :
if ($imagebutton) :
$btn_output = '<input type="image" alt="' . $button_text . '" class="button tck-search-button" src="' . $img . '" onclick="this.form.searchword.focus();"/>';
else :
$btn_output = '<button class="' . TCK_SEARCH_BUTTON_CLASS . ' tck-search-button" onclick="this.form.searchword.focus();">' . $searchicon . $button_text . '</button>';
endif;
switch ($button_pos) :
case 'top' :
$output = $btn_output . '<br />' . $output;
break;
case 'bottom' :
$output .= '<br />' . $btn_output;
break;
case 'right' :
$output .= $btn_output;
break;
case 'left' :
default :
$output = $btn_output . $output;
break;
endswitch;
endif;
echo $output;
?>
<input type="hidden" name="task" value="search" />
<input type="hidden" name="option" value="com_search" />
<input type="hidden" name="Itemid" value="<?php echo $mitemid; ?>" />
</form>
</div>