mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-23 13:54:27 +02:00
InfraTabs: add missing tab class
This commit is contained in:
parent
31d65fadc2
commit
27d1297303
49
library/Director/Web/Tabs/InfraTabs.php
Normal file
49
library/Director/Web/Tabs/InfraTabs.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Web\Tabs;
|
||||
|
||||
use Icinga\Authentication\Auth;
|
||||
use ipl\Translation\TranslationHelper;
|
||||
use ipl\Web\Widget\Tabs;
|
||||
|
||||
class InfraTabs extends Tabs
|
||||
{
|
||||
use TranslationHelper;
|
||||
|
||||
/** @var Auth */
|
||||
protected $auth;
|
||||
|
||||
public function __construct(Auth $auth)
|
||||
{
|
||||
$this->auth = $auth;
|
||||
// We are not a BaseElement, not yet
|
||||
$this->assemble();
|
||||
}
|
||||
|
||||
protected function assemble()
|
||||
{
|
||||
$auth = $this->auth;
|
||||
|
||||
if ($auth->hasPermission('director/audit')) {
|
||||
$this->add('activitylog', [
|
||||
'label' => $this->translate('Activity Log'),
|
||||
'url' => 'director/config/activities'
|
||||
]);
|
||||
}
|
||||
|
||||
if ($auth->hasPermission('director/deploy')) {
|
||||
$this->add('deploymentlog', [
|
||||
'label' => $this->translate('Deployments'),
|
||||
'url' => 'director/config/deployments'
|
||||
]);
|
||||
}
|
||||
|
||||
if ($auth->hasPermission('director/admin')) {
|
||||
$this->add('infrastructure', [
|
||||
'label' => $this->translate('Infrastructure'),
|
||||
'url' => 'director/dashboard',
|
||||
'urlParams' => ['name' => 'infrastructure']
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user