Config RFM à tester
This commit is contained in:
parent
71fd25f02c
commit
19f1685d8a
6
core/vendor/filemanager/config/config.php
vendored
6
core/vendor/filemanager/config/config.php
vendored
@ -48,13 +48,17 @@ if (!is_null($u) && !is_null($g) && !is_null($userId)) {
|
|||||||
case 2:
|
case 2:
|
||||||
case 1:
|
case 1:
|
||||||
$profil = $u['user'][$userId]['profil'];
|
$profil = $u['user'][$userId]['profil'];
|
||||||
|
if (!is_null($profil)) {
|
||||||
$file = $g['profil'][$group][$profil]['file'];
|
$file = $g['profil'][$group][$profil]['file'];
|
||||||
$folder = $g['profil'][$group][$profil]['folder'];
|
$folder = $g['profil'][$group][$profil]['folder'];
|
||||||
$uploadDir = $g['profil'][$group][$profil]['folder']['path'];
|
$uploadDir = $g['profil'][$group][$profil]['folder']['path'];
|
||||||
$currentPath = '../../../' . $uploadDir;
|
$currentPath = '../../../' . $uploadDir;
|
||||||
if (!is_dir($currentPath))
|
if (!is_dir($currentPath)) {
|
||||||
mkdir($currentPath);
|
mkdir($currentPath);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
// Applique default si $profil null
|
||||||
default:
|
default:
|
||||||
$file['delete'] = false;
|
$file['delete'] = false;
|
||||||
$file['upload'] = false;
|
$file['upload'] = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user