Introduce class RolesConfig
This commit is contained in:
parent
1f0ee9b0d4
commit
9de9fe8f39
|
@ -0,0 +1,40 @@
|
|||
<?php
|
||||
/* Icinga Web 2 | (c) 2019 Icinga GmbH | GPLv2+ */
|
||||
|
||||
namespace Icinga\Authentication;
|
||||
|
||||
use Icinga\Application\Icinga;
|
||||
use Icinga\Repository\IniRepository;
|
||||
|
||||
class RolesConfig extends IniRepository
|
||||
{
|
||||
protected $configs = [
|
||||
'roles' => [
|
||||
'name' => 'roles',
|
||||
'keyColumn' => 'name'
|
||||
]
|
||||
];
|
||||
|
||||
protected function initializeQueryColumns()
|
||||
{
|
||||
$columns = [
|
||||
'roles' => [
|
||||
'name',
|
||||
'users',
|
||||
'groups',
|
||||
'permissions',
|
||||
'application/share/users',
|
||||
'application/share/groups'
|
||||
]
|
||||
];
|
||||
|
||||
$moduleManager = Icinga::app()->getModuleManager();
|
||||
foreach ($moduleManager->listInstalledModules() as $moduleName) {
|
||||
foreach ($moduleManager->getModule($moduleName, false)->getProvidedRestrictions() as $restriction) {
|
||||
$columns['roles'][] = $restriction->name;
|
||||
}
|
||||
}
|
||||
|
||||
return $columns;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue