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
|
<?php
// Icinga Web 2 X.509 Module | (c) 2018 Icinga GmbH | GPLv2
/** @var \Icinga\Application\Modules\Module $this */
$section = $this->menuSection(N_('Certificate Monitoring'), array(
'icon' => 'check',
'url' => 'x509/dashboard',
'priority' => 40
));
$section->add(N_('Certificate Overview'), array(
'url' => 'x509/certificates',
'priority' => 10
));
$section->add(N_('Certificate Usage'), array(
'url' => 'x509/usage',
'priority' => 20
));
$this->provideConfigTab('backend', array(
'title' => $this->translate('Configure the database backend'),
'label' => $this->translate('Backend'),
'url' => 'config/backend'
));
$this->provideConfigTab('jobs', array(
'title' => $this->translate('Configure the scan jobs'),
'label' => $this->translate('Jobs'),
'url' => 'jobs'
));
$this->provideConfigTab('sni', array(
'title' => $this->translate('Configure SNI'),
'label' => $this->translate('SNI'),
'url' => 'sni'
));
$this->provideCssFile('icons.less');
|