97 lines
2.4 KiB
PHTML
97 lines
2.4 KiB
PHTML
<div id="center">
|
|
<h1 class="titre">COMPÉTENCES TERRITORIALES</h1>
|
|
<div class="paragraph">
|
|
<table>
|
|
<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>
|
|
<tr><td colspan="4" class="StyleInfoData"> </td></tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData">
|
|
<a href="<?=$this->url(array(
|
|
'action' => 'competences',
|
|
'siret' => $this->siret,
|
|
'id' => $this->id,
|
|
'type' => 'tri'
|
|
))?>">Tribunaux</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData">
|
|
<a href="<?=$this->url(array(
|
|
'action' => 'competences',
|
|
'siret' => $this->siret,
|
|
'id' => $this->id,
|
|
'type' => 'adm'
|
|
))?>">Administrateurs & Mandataires judiciaires</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData">
|
|
<a href="<?=$this->url(array(
|
|
'action' => 'competences',
|
|
'siret' => $this->siret,
|
|
'id' => $this->id,
|
|
'type' => 'hui'
|
|
))?>">Huissiers de justice</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData">
|
|
<a href="<?=$this->url(array(
|
|
'action' => 'competences',
|
|
'siret' => $this->siret,
|
|
'id' => $this->id,
|
|
'type' => 'pre'
|
|
))?>">Préfectures & Sous-préfectures</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData">
|
|
<a href="<?=$this->url(array(
|
|
'action' => 'competences',
|
|
'siret' => $this->siret,
|
|
'id' => $this->id,
|
|
'type' => 'cfe'
|
|
))?>">Centres de formalités des Entreprises (CCI, Greffes, Métiers, Artisanat, Agriculture, URSSAF, Impôts, etc...)</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData">
|
|
<a href="<?=$this->url(array(
|
|
'action' => 'competences',
|
|
'siret' => $this->siret,
|
|
'id' => $this->id,
|
|
'type' => 'jal'
|
|
))?>">Journaux d'Annonces Légales</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<?php
|
|
if (count($this->competences)>0){
|
|
?>
|
|
<?=$this->partial('juridique/competences-'.$this->type.'.phtml', array('competences' => $this->competences))?>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</div>
|