-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.php
41 lines (33 loc) · 958 Bytes
/
configuration.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
// SPDX-License-Identifier: AGPL-3.0-or-later
/** @var \Icinga\Application\Modules\Module $this */
$this->provideConfigTab('config', [
'url' => 'config',
'label' => $this->translate('Settings')
]);
$this->provideConfigTab('excellists', [
'url' => 'excellists',
'label' => $this->translate('Excel lists')
]);
$this->provideConfigTab('infolinks', [
'url' => 'infolinks',
'label' => $this->translate('Info. links')
]);
$this->provideConfigTab('namepatterns', [
'url' => 'namepatterns',
'label' => $this->translate('Name patterns')
]);
$section = $this->menuSection(N_('Polit. prisoners'), [
'icon' => 'users',
'priority' => -1
]);
$section->add(N_('All'), [
'icon' => 'th-list',
'url' => 'manufaktura_elfov/politprisoners/all',
'priority' => 10
]);
$section->add(N_('By birthday'), [
'icon' => 'calendar',
'url' => 'manufaktura_elfov/politprisoners/bybirthday',
'priority' => 20
]);