Affichage des liens pour un profil après la recherche
This commit is contained in:
parent
cf499843ea
commit
1b881a17c4
@ -269,25 +269,47 @@ else
|
||||
echo '<i>, '.strWsToHtml($etab['DirFonction']).'</i><br/>';
|
||||
}
|
||||
//Affichage spécial
|
||||
|
||||
if( $_SESSION['tabInfo']['idClient']==34 )
|
||||
{
|
||||
?>
|
||||
Liens : <i><a title="Consultez les comptes annuels" href="/?page=greffes&vue=bilans&siret=<?=$etab['Siret']?>">Comptes annuels</a></i> -
|
||||
<i><a title="Consultez les actes et status" href="/?page=greffes&vue=actes&siret=<?=$etab['Siret']?>">Actes et status</a></i>
|
||||
Liens : <i><a title="Consultez les comptes annuels" href="./?page=greffes&vue=bilans&siret=<?=$etab['Siret']?>">Comptes annuels</a></i> -
|
||||
<i><a title="Consultez les actes et status" href="./?page=greffes&vue=actes&siret=<?=$etab['Siret']?>">Actes et status</a></i>
|
||||
<br/>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
if( $_SESSION['tabInfo']['idClient']==60 )
|
||||
require_once 'user/user.php';
|
||||
$listProfile = defineProfil();
|
||||
$idClient = $_SESSION['tabInfo']['idClient'];
|
||||
if(array_key_exists($idClient, $listProfile))
|
||||
{
|
||||
$liensProfile = $listProfile[$idClient];
|
||||
if(is_array($liensProfile) && count($liensProfile)>0)
|
||||
{
|
||||
?>
|
||||
Liens :
|
||||
<?php
|
||||
$i=0;
|
||||
foreach($liensProfile as $vue => $lien)
|
||||
{
|
||||
?>
|
||||
<i>
|
||||
<a title="<?=$lien['titre']?>" href="./?page=<?=$vue?>&siret=<?=$etab['Siret']?>&idEntreprise=<?=$etab['idEntreprise']?>&profile=1">
|
||||
<?=$lien['titre']?>
|
||||
</a>
|
||||
</i>
|
||||
<?php
|
||||
if(count($liensProfile)<$i) { echo '-'; }
|
||||
$i++;
|
||||
}
|
||||
?>
|
||||
<br/>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
Liens : <i><a title="Fiche AGS" href="/?page=identite&profil=1&siret=<?=$etab['Siret']?>">Fiche AGS</a></i>
|
||||
<br/>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
<br/>
|
||||
</li>
|
||||
<?
|
||||
|
Loading…
x
Reference in New Issue
Block a user