79 lines
2.2 KiB
PHTML
79 lines
2.2 KiB
PHTML
<div id="center">
|
|
<h1 class="titre">INFORMATIONS RÉGLEMENTÉES</h1>
|
|
<div class="paragraph">
|
|
<table class="identite">
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">
|
|
Numéro identifiant Siren
|
|
</td>
|
|
<td width="350" class="StyleInfoData">
|
|
<?=$this->SirenTexte($this->siren)?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
|
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<?php if ($this->liste) { ?>
|
|
<h2>Informations réglementées <span style="font-weight:normal; font-size:8pt">(sources diffuseurs: BusinessWire / Hugin / actunews / DI Release)</span></h2>
|
|
<div class="paragraph">
|
|
<table>
|
|
<?php if (count($this->annonces)>0) {?>
|
|
<?php foreach($this->annonces as $item){ ?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="100" class="StyleInfoLib">Le <?=$item['DateParution']?></td>
|
|
<td width="450" colspan="2" class="StyleInfoData">
|
|
<a href="<?=$this->url(array('controller'=>'juridique', 'action'=>'infosreg', 'siret'=>$siret, 'idan'=>$ann['id']))?>">
|
|
<?=$item['titre']?>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
<?php }?>
|
|
<?php } else {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="100" class="StyleInfoLib"> </td>
|
|
<td width="450" colspan="2" class="StyleInfoData">Néant</td>
|
|
</tr>
|
|
<?php }?>
|
|
</table>
|
|
</div>
|
|
<?php } else {?>
|
|
<?php
|
|
foreach($this->annonces as $item){
|
|
if ($item['id']==$this->idComm) break;
|
|
}
|
|
?>
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData">
|
|
Information <?=$item['source']?> du <?=$item['DateParution']?>.
|
|
Entrée en base S&D : <?=$item['dateInsertionSD']?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoLib"><b><?=$item['titre']?></b></td>
|
|
</tr>
|
|
<tr><td colspan="4"> </td></tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3"><?=$this->RemplaceSiren($item['communique'])?></td>
|
|
</tr>
|
|
<tr><td colspan="4"> </td></tr>
|
|
<tr>
|
|
<td colspan="4" align="center" class="StyleInfoData">
|
|
<a href="Javascript:history.back()">Revenir à la liste des annonces</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php }?>
|
|
</div>
|