91 lines
2.2 KiB
PHTML
91 lines
2.2 KiB
PHTML
<?php if (empty($this->AutrePage)):?>
|
|
<div id="center">
|
|
<?php endif;?>
|
|
|
|
<?php if (empty($this->AutrePage)):?>
|
|
<h1 class="titre">ANNONCES LÉGALES</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?>
|
|
<?php if($this->hasModeEdition) : ?>
|
|
<a href="<?=$this->url(array(
|
|
'controller' => 'saisie',
|
|
'action' => 'fiche',
|
|
'siret' => $this->siret,
|
|
'id' => $this->id,
|
|
))?>">(Edition)</a>
|
|
<?php endif ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
<?=$this->action('infos','surveillance', null, array(
|
|
'source' => 'annonces',
|
|
'siret' => $this->siret
|
|
))?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<?php endif;?>
|
|
|
|
<?php if (count($this->annoncesBodacc)+count($this->annoncesBalo)+count($this->annoncesBomp)+count($this->annoncesAsso)==0):?>
|
|
<h2>EVÉNEMENTS LÉGAUX</h2>
|
|
<div class="paragraph">
|
|
Néant
|
|
</div>
|
|
<?php endif;?>
|
|
|
|
<?php if(count($this->annoncesBodacc)>0){ ?>
|
|
<h2>EVÉNEMENTS LÉGAUX</h2>
|
|
<div class="paragraph">
|
|
<table>
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBodacc)?>
|
|
</table>
|
|
</div>
|
|
<?php }?>
|
|
|
|
<?php if(count($this->annoncesBalo)>0){ ?>
|
|
<h2>BALO</h2>
|
|
<div class="paragraph">
|
|
<table>
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBalo)?>
|
|
</table>
|
|
</div>
|
|
<?php }?>
|
|
|
|
<?php if(count($this->annoncesBomp)>0){ ?>
|
|
<h2>Marchés publics</h2>
|
|
<div class="paragraph">
|
|
<table>
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBomp)?>
|
|
</table>
|
|
</div>
|
|
<?php }?>
|
|
|
|
<?php if(count($this->annoncesAsso)>0){ ?>
|
|
<h2>Associations</h2>
|
|
<div class="paragraph">
|
|
<table>
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesAsso)?>
|
|
</table>
|
|
</div>
|
|
<?php }?>
|
|
|
|
<?php if (empty($this->AutrePage)):?>
|
|
</div>
|
|
<?php endif;?> |