2009-10-14 10:06:17 +00:00
< h1 class = " titre " > RECHERCHE ANNONCES L & Eacute ; GALES </ h1 >
< ? php
require_once 'common/dates.php' ;
require_once 'siren.php' ;
$parametresTxt = array (
'source' => 'Source' ,
'bodacc' => 'Type' ,
'histo' => '' ,
2010-02-10 17:27:03 +00:00
'annee' => 'Année' ,
2009-10-14 10:06:17 +00:00
'dateparution' => 'Date de parution' ,
2010-02-10 17:27:03 +00:00
'nparution' => 'Numéro de parution' ,
2009-10-14 10:06:17 +00:00
'bpage' => 'Page' ,
2010-02-10 17:27:03 +00:00
'nannonce' => 'Numéro d\'annonce' ,
'naffaire' => 'Numéro d\'affaire' ,
2009-10-14 10:06:17 +00:00
'txt' => 'Recherche' );
$strCriteres = '' ;
foreach ( $parametresTxt as $key => $param )
{
if ( $_SESSION [ 'recherchehisto' ][ $key ] != '' && $param != '' )
{
$strCriteres .= $param . ' : ' . $_SESSION [ 'recherchehisto' ][ $key ] . ', ' ;
}
}
if ( $O [ 'nbReponses' ] == 0 )
{
?>
< p class = " StyleInfoLib " >
Pas de r & eacute ; sultat affich & eacute ; avec le ( s ) crit & egrave ; re ( s ) < a title = " Retour au formulaire de recherche " href = " ./index.php?page=recherche&vue=annonce " >< ? = $strCriteres ?> </a>
</ p >
< ? php
}
else
{
2010-02-10 17:27:03 +00:00
//Affichage des critères de recherche
2009-10-14 10:06:17 +00:00
?>
2010-02-10 17:27:03 +00:00
< p class = " StyleInfoLib " > Critères de recherche < a title = " Retour au formulaire de recherche " href = " ./index.php?page=recherche&vue=annonce " >< ? = $strCriteres ?> </a></p>
2009-10-14 10:06:17 +00:00
< div id = " annonce " >
< ? php
2010-02-10 17:27:03 +00:00
//Affichage des données
2009-10-14 10:06:17 +00:00
foreach ( $O [ 'reponses' ] as $annonce )
{
$texte = preg_replace_callback ( " /((?:[0-9] { 9,9})|(?:[0-9] { 3,3} [0-9] { 3,3} [0-9] { 3,3})|(?:[0-9] { 3,3} \ .[0-9] { 3,3} \ .[0-9] { 3,3})|(?:[0-9] { 3,3}-[0-9] { 3,3}-[0-9] { 3,3}))/ " , replace_siren , $annonce [ 'Annonce' ]);
if ( substr ( $O [ 'criteres' ][ 'source' ], 0 , 3 ) == 'BOD' )
{
?>
2010-02-10 17:27:03 +00:00
Source BODACC n° < ? = $annonce [ 'Num_Parution' ] ?> <?=substr($O['criteres']['source'], 3, 1)?> du <?=WDate::dateT('Y-m-d', 'd/m/Y', $annonce['Date_Parution'])?>.
2009-10-14 10:06:17 +00:00
< ? php
}
?>
2010-02-10 17:27:03 +00:00
Département n° < ? = $annonce [ 'Departement' ] ?> . <?=$annonce['Tribunal_Code']?>
2009-10-14 10:06:17 +00:00
< br />< br />
< code >< ? = $texte ?> </code><br/>
< ? php
}
?>
</ div >
< ? php
}