39 lines
959 B
PHTML
39 lines
959 B
PHTML
<div id="center">
|
|
<h2>Saisie</h2>
|
|
<div class="paragraph">
|
|
<?php if (!empty($this->message)) { ?>
|
|
<div style="margin:5px; padding:0.7em;" class="ui-state-highlight ui-corner-all">
|
|
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-info"></span>
|
|
<?=$this->message?>
|
|
</p></div>
|
|
<?php } ?>
|
|
<br/>
|
|
<a href="<?=$this->url(array('controller'=>'juridique', 'action'=>'annonces', 'siret'=>$this->siret, 'id'=>$this->id))?>">
|
|
Retour à la liste des annonces légales.
|
|
</a><br/>
|
|
|
|
<a href="<?=$this->url(array('controller'=>'identite', 'action'=>'fiche', 'siret'=>$this->siret, 'id'=>$this->id))?>">
|
|
Retour à la fiche identité.
|
|
</a><br/>
|
|
|
|
<a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'entreprise'))?>">
|
|
Retour à la recherche
|
|
</a>
|
|
</div>
|
|
|
|
<h2>Paramètres</h2>
|
|
<pre>
|
|
<?php print_r($this->params);?>
|
|
</pre>
|
|
|
|
<h2>Infos Envoyés</h2>
|
|
<pre>
|
|
<?php print_r($this->tabInfos);?>
|
|
</pre>
|
|
|
|
<pre>
|
|
<?php print_r($this->O);?>
|
|
</pre>
|
|
|
|
</div>
|