19 lines
424 B
PHP
19 lines
424 B
PHP
|
<?php
|
||
|
require_once realpath(dirname(__FILE__)).'/surveillance.php';
|
||
|
$permSurveillance = false;
|
||
|
foreach(assocSourceDroit() as $source => $perm)
|
||
|
{
|
||
|
if(hasPerm($perm)){ $permSurveillance = true; break; }
|
||
|
}
|
||
|
if($permSurveillance){
|
||
|
?>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td width="30"> </td>
|
||
|
<td colspan="3" width="550" class="StyleInfoData">
|
||
|
<?=getSurveillance('', $siret)?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<?php
|
||
|
}
|