2023-09-05 15:21:01 +02:00
|
|
|
<?php $moduleData['news'] = [
|
|
|
|
'add' => $this->getInput('profilEditNewsAdd', helper::FILTER_BOOLEAN),
|
|
|
|
'edit' => $this->getInput('profilEditNewsEdit', helper::FILTER_BOOLEAN),
|
|
|
|
'delete' => $this->getInput('profilEditNewsDelete', helper::FILTER_BOOLEAN),
|
|
|
|
'option' => $this->getInput('profilEditNewsOption', helper::FILTER_BOOLEAN),
|
|
|
|
'config' => $this->getInput('profilEditNewsAdd', helper::FILTER_BOOLEAN) ||
|
|
|
|
$this->getInput('profilEditNewsEdit', helper::FILTER_BOOLEAN) ||
|
2023-11-03 18:00:51 +01:00
|
|
|
$this->getInput('profilEditNewsDelete', helper::FILTER_BOOLEAN) ||
|
2023-09-05 15:21:01 +02:00
|
|
|
$this->getInput('profilEditNewsOption', helper::FILTER_BOOLEAN)
|
|
|
|
];
|