|
Jireck 8502
| Posté : 21-08-2023 12:05
Bonjour,
Question autorisation, il y a un mode admin (-127), un mode anonyme 0 ...
il n'y a pas de mode personnel ? |  Profil
|
|
jpb 2791
| Posté : 21-08-2023 13:09
que veux tu dire par mode personnel ? |  Profil www
|
|
Jireck 8502
| Posté : 25-08-2023 23:33
qui check que c'est toi |  Profil
|
|
jpb 2791
| Posté : 26-08-2023 08:35
1 pour les membres (dans la fonction autorisation)... si c'est ca que tu cherches... |  Profil www
|
|
Jireck 8502
| Posté : 06-09-2023 10:06
je reposte la fonction
function autorisation($auto) {
global $user, $admin;
$affich=false;
if (($auto==-1) and (!$user)) $affich=true;
if (($auto==1) and (isset($user))) $affich=true;
if ($auto>1) {
$tab_groupe=valid_group($user);
if ($tab_groupe) {
foreach($tab_groupe as $groupevalue) {
if ($groupevalue==$auto) {
$affich=true;
break;
}
}
}
}
if ($auto==0) $affich=true;
if (($auto==-127) and ($admin)) $affich=true;
return ($affich);
}
-127 => Admin ok
0 anonyme ok
1 membre ok
>1 groupe ok
-1 ?
|  Profil
|
|