44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
if (!$_SESSION['connected']) die();
|
|
if ($_SESSION['tabInfo']['idClient']==34){ $_SESSION['nowAuthorized']=FALSE; }
|
|
|
|
/*
|
|
* Pour les liens affectant les valeurs des champs du formulaire
|
|
*/
|
|
if (isset($_REQUEST['formR'])){
|
|
$formR = $_REQUEST['formR'];
|
|
}
|
|
|
|
if(!isset($vueRecherche)){ $vueRecherche = $_REQUEST['vue']; }
|
|
|
|
switch ($vueRecherche) {
|
|
case 'ent':
|
|
require_once 'recherche/recherche_ent.php';
|
|
break;
|
|
case 'enq':
|
|
require_once 'recherche/recherche_enq.php';
|
|
break;
|
|
case 'dir':
|
|
require_once 'recherche/recherche_dir.php';
|
|
break;
|
|
case 'histo':
|
|
require_once 'recherche/recherche_histo.php';
|
|
break;
|
|
case 'annoncelist':
|
|
require_once 'recherche/recherche_annonceslist.php';
|
|
break;
|
|
case 'annonce':
|
|
require_once 'recherche/recherche_annonces.php';
|
|
break;
|
|
case 'list_pre':
|
|
require_once 'recherche/session.php';
|
|
$formR = recherche_element(0);
|
|
case 'list':
|
|
require_once 'recherche/recherche_list.php';
|
|
//On efface de la session les éléments suivants $_SESSION['tabInfo']['entrep']
|
|
unset($_SESSION['tabInfo']['entrep']);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
?>
|