This commit is contained in:
Fred Tempez 2023-03-16 11:38:46 +01:00
parent 903c4e703c
commit abcf4c3a70
1 changed files with 9 additions and 2 deletions

View File

@ -453,11 +453,17 @@ class user extends common
'notification' => helper::translate('Action interdite')
]);
}
$group = $this->getUrl(2);
// Soumission du formulaire
if ($this->isPost()) {
$group = $this->getUrl(2);
var_dump( $group );
die();
$this->setData(['group',
$group,
$group, [
'name'=> $this->getData(['group', $group, 'name']),
'readonly' => $this->getData(['group', $group, 'readonly']),
'comment'=> $this->getData(['group', $group, 'comment']),
'file' => [
'download' => $this->getInput('groupEditDownload', helper::FILTER_BOOLEAN),
'edit' => $this->getInput('groupEditEdit', helper::FILTER_BOOLEAN),
@ -478,6 +484,7 @@ class user extends common
'copycut' => $this->getInput('groupEditFolderCopycut', helper::FILTER_BOOLEAN),
'permission' => $this->getInput('groupEditFolderPermission', helper::FILTER_BOOLEAN),
]
]
]);
}