2009-03-11 07:51:18 +00:00
|
|
|
<?php
|
2010-04-26 14:46:13 +00:00
|
|
|
if (!$_SESSION['connected']){
|
|
|
|
$message = 'Erreur 11000 : Not connected';
|
|
|
|
$page2 = 'themes/default/error-connect.tpl.php';
|
|
|
|
}
|
2010-02-10 17:27:03 +00:00
|
|
|
//Affectation de valeur par défaut pour arriver sur la page de recherche
|
2009-12-04 17:17:09 +00:00
|
|
|
if (!isset($page2))
|
|
|
|
{
|
2009-07-09 10:19:52 +00:00
|
|
|
$title='Recherche';
|
2009-02-26 17:56:35 +00:00
|
|
|
$page2='recherche.php';
|
|
|
|
$vueRecherche = 'ent';
|
|
|
|
}
|
2009-07-09 10:19:52 +00:00
|
|
|
require_once 'siren.php';
|
2009-02-26 17:16:11 +00:00
|
|
|
?>
|
2010-03-18 14:57:23 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2009-12-04 17:17:09 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr">
|
2009-02-19 16:28:12 +00:00
|
|
|
<head>
|
2010-01-22 08:58:39 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?=CHARSET?>" />
|
2009-02-19 16:28:12 +00:00
|
|
|
<title>Extranet Scores & Décisions - <?=$title?></title>
|
2009-07-15 14:27:29 +00:00
|
|
|
<?php require_once 'includeheader.php'; ?>
|
2009-07-09 10:19:52 +00:00
|
|
|
</head>
|
2010-04-13 13:27:10 +00:00
|
|
|
<body>
|
2009-12-04 17:17:09 +00:00
|
|
|
<div id="container">
|
2010-04-13 13:27:10 +00:00
|
|
|
<div id="left">
|
|
|
|
<?php if ($sortie!='pdf' && $sortie!='prt') require_once 'menu.php'; ?>
|
2009-12-04 17:17:09 +00:00
|
|
|
</div>
|
2010-04-13 13:27:10 +00:00
|
|
|
<div id="content">
|
|
|
|
<div id="page">
|
|
|
|
<?php include($page2); ?>
|
|
|
|
<div id="footer">
|
|
|
|
<?php include('pagefooter.php');?>
|
|
|
|
</div>
|
|
|
|
</div> <!-- //page -->
|
|
|
|
</div> <!-- //content -->
|
2009-12-04 17:17:09 +00:00
|
|
|
</div> <!-- //container -->
|
2009-02-19 16:28:12 +00:00
|
|
|
</body>
|
2009-02-17 13:14:53 +00:00
|
|
|
</html>
|