forked from ZwiiCMS-Team/ZwiiCMS
Fred Tempez
8cac9eae8b
- ajout du module pour les tests mise aux - normes php 8.2 et - ajout des contrôles de profil. Setup devient option
18 lines
1.3 KiB
PHP
18 lines
1.3 KiB
PHP
<?php $moduleData['download'] = [
|
|
'add' => $this->getInput('profilAddDownloadAdd', helper::FILTER_BOOLEAN),
|
|
'edit' => $this->getInput('profilAddDownloadEdit', helper::FILTER_BOOLEAN),
|
|
'delete' => $this->getInput('profilAddDownloadDelete', helper::FILTER_BOOLEAN),
|
|
'option' => $this->getInput('profilAddDownloadOption', helper::FILTER_BOOLEAN),
|
|
'comment' => $this->getInput('profilAddDownloadComment', helper::FILTER_BOOLEAN),
|
|
'commentApprove' => $this->getInput('profilAddDownloadCommentApprove', helper::FILTER_BOOLEAN),
|
|
'commentDelete' => $this->getInput('profilAddDownloadCommentDelete', helper::FILTER_BOOLEAN),
|
|
'commentDeleteAll' => $this->getInput('profilAddDownloadCommentDeleteAll', helper::FILTER_BOOLEAN),
|
|
'config' => $this->getInput('profilAddDownloadAdd', helper::FILTER_BOOLEAN) ||
|
|
$this->getInput('profilAddDownloadEdit', helper::FILTER_BOOLEAN) ||
|
|
$this->getInput('profilAddDownloadDelete', helper::FILTER_BOOLEAN) ||
|
|
$this->getInput('profilAddDownloadOption', helper::FILTER_BOOLEAN) ||
|
|
$this->getInput('profilAddDownloadComment', helper::FILTER_BOOLEAN) ||
|
|
$this->getInput('profilAddDownloadCommentApprove', helper::FILTER_BOOLEAN) ||
|
|
$this->getInput('profilAddDownloadCommentDelete', helper::FILTER_BOOLEAN) ||
|
|
$this->getInput('profilAddDownloadCommentDeleteAll', helper::FILTER_BOOLEAN)
|
|
]; |