ObjectTabs: a new set of tabs

This commit is contained in:
Thomas Gelf 2017-06-19 01:07:57 +02:00
parent 11b054d296
commit 14eb6df712
1 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,55 @@
<?php
namespace Icinga\Module\Director\Web\Tabs;
use Icinga\Authentication\Auth;
use Icinga\Module\Director\Objects\IcingaObject;
use ipl\Translation\TranslationHelper;
use ipl\Web\Component\Tabs;
class ObjectsTabs extends Tabs
{
use TranslationHelper;
public function __construct($type, Auth $auth)
{
$object = IcingaObject::createByType($type);
if ($object->isGroup()) {
$object = IcingaObject::createByType(substr($type, 0, -5));
}
$this->add('index', array(
'url' => sprintf('director/%ss', strtolower($type)),
'label' => $this->translate(ucfirst($type) . 's'),
));
if ($auth->hasPermission('director/admin')) {
if ($object->supportsImports()) {
$this->add('templates', array(
'url' => sprintf('director/%ss/templates', strtolower($type)),
'label' => $this->translate('Templates'),
));
}
if ($object->supportsGroups()) {
$this->add('groups', array(
'url' => sprintf('director/%sgroups', $type),
'label' => $this->translate('Groups')
));
}
if ($object->supportsApplyRules()) {
$this->add('applyrules', array(
'url' => sprintf('director/%ss/applyrules', $type),
'label' => $this->translate('Apply')
));
}
if ($object->supportsSets()) {
$this->add('sets', array(
'url' => sprintf('director/%ss/sets', $type),
'label' => $this->translate('Sets')
));
}
}
}
}