2023-07-21 21:48:41 +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 17:59:55 +01:00
|
|
|
$this->getInput('profilEditNewsDelete', helper::FILTER_BOOLEAN) ||
|
2023-07-21 21:48:41 +02:00
|
|
|
$this->getInput('profilEditNewsOption', helper::FILTER_BOOLEAN)
|
|
|
|
];
|