Config RFM à tester

This commit is contained in:
Fred Tempez 2023-05-09 16:38:26 +02:00
parent 71fd25f02c
commit 19f1685d8a
1 changed files with 11 additions and 7 deletions

View File

@ -48,13 +48,17 @@ if (!is_null($u) && !is_null($g) && !is_null($userId)) {
case 2:
case 1:
$profil = $u['user'][$userId]['profil'];
$file = $g['profil'][$group][$profil]['file'];
$folder = $g['profil'][$group][$profil]['folder'];
$uploadDir = $g['profil'][$group][$profil]['folder']['path'];
$currentPath = '../../../' . $uploadDir;
if (!is_dir($currentPath))
mkdir($currentPath);
break;
if (!is_null($profil)) {
$file = $g['profil'][$group][$profil]['file'];
$folder = $g['profil'][$group][$profil]['folder'];
$uploadDir = $g['profil'][$group][$profil]['folder']['path'];
$currentPath = '../../../' . $uploadDir;
if (!is_dir($currentPath)) {
mkdir($currentPath);
}
break;
}
// Applique default si $profil null
default:
$file['delete'] = false;
$file['upload'] = false;