blob: 5f86949af40be42739ae3b156cef5d670dd5696d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
namespace Icinga\Module\Director\Web\ActionBar;
use gipfl\IcingaWeb2\Link;
class ObjectsActionBar extends DirectorBaseActionBar
{
protected function assemble()
{
$type = $this->type;
$this->add(
$this->getBackToDashboardLink()
)->add(
Link::create(
$this->translate('Add'),
"director/$type/add",
['type' => 'object'],
[
'title' => $this->translate('Create a new object'),
'class' => 'icon-plus',
'data-base-target' => '_next'
]
)
);
}
}
|