105 lines
2.7 KiB
PHTML
105 lines
2.7 KiB
PHTML
<style type="text/css">
|
|
#utilisateur { border-collapse:collapse; width:100%;}
|
|
#utilisateur tr.titre td { background-color: #D9EEF1; font-weight:bold; }
|
|
#utilisateur tr.border td {
|
|
border:1px dashed #939393; padding:5px; margin:0; vertical-align:top; }
|
|
#utilisateur tr.actif { background-color:#D9EEF1; }
|
|
#utilisateur tr.noactif { background-color:#F0F0F6; }
|
|
.cadreinfo {display:none;}
|
|
</style>
|
|
<div id="center">
|
|
<h1>GESTION DES CLIENTS</h1>
|
|
<h2>Liste des clients</h2>
|
|
<div class="paragraph">
|
|
<table id="utilisateur" >
|
|
<tr class="border titre">
|
|
<td class="StyleInfoLib">Nom</td>
|
|
<td class="StyleInfoLib">Informations</td>
|
|
<td class="StyleInfoLib">Actions</td>
|
|
</tr>
|
|
<?php
|
|
if (count($this->ListeClients) > 0) {
|
|
foreach ($this->ListeClients as $cl) {
|
|
if ($cl->actif == 'Oui') {
|
|
$class = 'actif';
|
|
} else {
|
|
$class = 'noactif';
|
|
}
|
|
?>
|
|
<tr class="border <?=$class?>">
|
|
<td><?=$cl->nom?></td>
|
|
<td>
|
|
|
|
<div class="lien">
|
|
<a title="Informations" href="#">Informations</a>
|
|
<span class="cadreinfo">
|
|
idClient : <?=$cl->idClient?><br/>
|
|
Nom : <?=$cl->nom?><br/>
|
|
SIREN : <?=$cl->siren?><br/>
|
|
dateInsert : <?=$cl->dateInsert?><br/>
|
|
dateUpdate : <?=$cl->dateUpdate?><br/>
|
|
Actif : <?=$cl->actif?><br/>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="lien">
|
|
<a title="Paramètres" href="#">Paramètres</a>
|
|
<span class="cadreinfo">Filtre Ip :<br/>
|
|
<?php
|
|
$ips = explode(';', $cl->filtres_ip);
|
|
foreach ($ips as $ip){
|
|
echo $ip.'<br/>';
|
|
}
|
|
?>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="lien">
|
|
<a title="Droits" href="">Droits</a>
|
|
<span class="cadreinfo">
|
|
<?php
|
|
$listedroits = explode(' ', $cl->droits);
|
|
foreach($listedroits as $droit) {
|
|
foreach($this->wsdroits as $item){
|
|
if (strtolower($item->code)==$droit){
|
|
echo $item->desc.'<br/>';
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
</span>
|
|
</div>
|
|
<a title="Liste des utiliateurs" href="./?page=administration&idClient=<?php echo $cl->idClient?>">
|
|
Liste des utilisateurs
|
|
</a>
|
|
<div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
<td>
|
|
<?php
|
|
if ($cl->actif == 'Oui') {
|
|
?>
|
|
<a href="<?=$this->url(array(
|
|
'controller' => 'dashboard',
|
|
'action' => 'client',
|
|
'idClient' => $cl->idClient
|
|
))?>">
|
|
<img src="/themes/default/images/interfaces/editer_trans.png" title="Editer"
|
|
width="16" height="16"/>
|
|
</a>
|
|
<?php
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</table>
|
|
</div>
|
|
</div>
|