file:///home/developper/svn/phpcompta/branches/rel510 ........ r3340 | danydb | 2010-06-25 20:22:36 +0200 (Fri, 25 Jun 2010) | 1 line Fix bug in extension : the user list was limited (FF limit) ........ r3341 | danydb | 2010-06-25 21:16:50 +0200 (Fri, 25 Jun 2010) | 1 line Improve for user with plugin only, adaptation for numerous users ........
31 lines
No EOL
536 B
PHP
31 lines
No EOL
536 B
PHP
<div style="overflow:hidden">
|
|
<fieldset>
|
|
<legend><?=_('Sécurité')?></legend>
|
|
<table class="result">
|
|
<tr >
|
|
<th><?=_('login')?></th>
|
|
<th><?=_('Prénom')?></th>
|
|
<th><?=_('Nom')?></th>
|
|
<th><?=_('Accès')?></th>
|
|
</tr>
|
|
<? for ($i = 0 ; $i < sizeof($array);$i++) : ?>
|
|
<? if ( $i % 2 == 0 ) $class="even"; else $class="odd"; ?>
|
|
<tr>
|
|
<td >
|
|
<?=$array[$i]['use_login']?>
|
|
</td>
|
|
<td>
|
|
<?=$array[$i]['use_first_name']?>
|
|
</td>
|
|
<td>
|
|
<?=$array[$i]['use_name']?>
|
|
</td>
|
|
<td>
|
|
<?=$array[$i]['access']?>
|
|
</td>
|
|
</tr>
|
|
<? endfor;?>
|
|
|
|
</table>
|
|
</fieldset>
|
|
</div>
|