Source for file list.php
Documentation is available at list.php
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
<li><a href="index.php" class="chemin_home"> <?php echo _t('way','home');?></a>
<li><a href=" <?php echo $rub_link; ?>" id="chemin_ <?php echo $rub; ?>"
class="chemin_rub"> <?php echo _t('menu','search');?></a></li>
include_once(THEME_ADMIN_PATH. "quickicons.php");
<div class="contentcontainer"> <?php include_once($dir . "/menurub.php"); ?>
if (!isset ($_POST['valid'])) {
echo '<h2>' . _t('menu','search') . '</h2>' . END_LINE;
<form action=" <?php echo $_SERVER['PHP_SELF'];?>" method="post">
<label for="search"> <?php echo _t('search','keywords');?></label>
<input type="text" maxlength="150" class="textfield" name="search" id="search" style="margin-right: 30px" /> <br class="brendstep" />
<div style="margin: 3em 200px">
<input type="radio" name="searchtype" id="searchtype_1" value="one" checked="checked" />
<label for="searchtype_1" class="autowidth"> <?php echo _t('search','one_of_them');?></label>
<input type="radio" name="searchtype" id="searchtype_2" value="all" />
<label for="searchtype_2" class="autowidth"> <?php echo _t('search','all_of_them');?></label>
<input type="radio" name="searchtype" id="searchtype_3" value="exp" />
<label for="searchtype_3" class="autowidth"> <?php echo _t('search','expression');?></label>
<input type="hidden" name="rub" id="rubsearch" value=" <?php echo $rub;?>" />
<input type="submit" value=" <?php echo _t('search','text_button');?>" size="15" name="valid" class="button" id="validsearch" />
include_once($dir . "/display.php");
if (!isset ($_REQUEST['search']) || strlen($_REQUEST['search']) <= 3)
echo _t('search','min_length');
if (isset ($_REQUEST['searchincome'])) $str = trim($_REQUEST['searchincome']);
else $str = $_REQUEST['search'];
if (!isset ($_REQUEST['searchtype'])) $searchtype = 'one';
else $searchtype = $_REQUEST['searchtype'];
if($searchtype== 'one') $display_method= _t('search','one_of_them');
if($searchtype== 'all') $display_method= _t('search','all_of_them');
if($searchtype== 'exp') $display_method= _t('search','expression');
echo '<h2>' . _t('search','result') . '</h2>' . END_LINE;
echo _t('search','keywords');
echo _t('search','method');
if ($rub == 'home') $rub = 'all';
<?php include_once($dir. "/help.php"); ?></div>
|