Your IP : 172.28.240.42


Current Path : /var/www/html/clients/kampol.e-nk.ru/OLD/modules/
Upload File :
Current File : /var/www/html/clients/kampol.e-nk.ru/OLD/modules/mod_search.php

<?php
defined( '_VALID_MOS' ) or die( 'Äîñòóï çàïðåùåí' );

$button                        = $params->get( 'button', 'true' );
$button_pos                = $params->get( 'button_pos', 'left' );
$button_text        = $params->get( 'button_text', _SEARCH_TITLE );
$width                         = intval( $params->get( 'width', 20 ) );
$text                         = $params->get( 'text', _SEARCH_BOX );
$set_Itemid                = intval( $params->get( 'set_itemid', 0 ) );

$output = '<br><br><input name="searchword" id="mod_search_searchword" maxlength="50" alt="search" type="text" style="float:left;width:100px"
style="background-color:#AAC6E2;border:1px solid #FFFFFF;"/>';

if ( $button )
{
        $button = '<input type="submit" value="'. $button_text .'" style="float:right;font-size:11px;font-family:tahoma;"/>';
}

switch ( $button_pos ) {
        case 'top':
                $button = $button ;
                $output = $button . $output;
                break;

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

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

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

// set Itemid id for links
if ( $set_Itemid ) {
        // use param setting
        $_Itemid        = $set_Itemid;
        $link                 = 'index.php?option=com_search&amp;Itemid='. $set_Itemid;
} else {
        $query = "SELECT id"
        . "\n FROM #__menu"
        . "\n WHERE link = 'index.php?option=com_search'"
        . "\n AND published = 1"
        ;
        $database->setQuery( $query );
        $rows = $database->loadObjectList();

        // try to auto detect search component Itemid
        if ( count( $rows ) ) {
                $_Itemid        = $rows[0]->id;
                $link                 = 'index.php?option=com_search&amp;Itemid='. $_Itemid;
        } else {
        // Assign no Itemid
                $_Itemid         = '';
                $link                 = 'index.php?option=com_search';
        }
}
?>

<form action="<?php echo $link; ?>" method="get">
        <div class="search<?php echo $moduleclass_sfx; ?>" style="padding-top:10px;padding-bottom:10px">
                <?php echo $output; ?>
        </div>

        <input type="hidden" name="option" value="com_search" />
        <input type="hidden" name="Itemid" value="<?php echo $_Itemid; ?>" />
</form>