summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/application/forms/Setup/WelcomePage.php
blob: aa78db5e044c4ff3276ba415d68858f1ef6f4a77 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */

namespace Icinga\Module\Monitoring\Forms\Setup;

use Icinga\Web\Form;

class WelcomePage extends Form
{
    public function init()
    {
        $this->setName('setup_monitoring_welcome');
    }

    public function createElements(array $formData)
    {
        $this->addElement(
            'note',
            'welcome',
            array(
                'value'         => $this->translate(
                    'Welcome to the configuration of the monitoring module for Icinga Web 2!'
                ),
                'decorators'    => array(
                    'ViewHelper',
                    array('HtmlTag', array('tag' => 'h2'))
                )
            )
        );

        $this->addElement(
            'note',
            'core_hint',
            array(
                'value'         => $this->translate('This is the core module for Icinga Web 2.'),
                'decorators'    => array('ViewHelper')
            )
        );

        $this->addElement(
            'note',
            'description',
            array(
                'value'         => $this->translate(
                    'It offers various status and reporting views with powerful filter capabilities that allow'
                    . ' you to keep track of the most important events in your monitoring environment.'
                ),
                'decorators'    => array('ViewHelper')
            )
        );

        $this->addDisplayGroup(
            array('core_hint', 'description'),
            'info',
            array(
                'decorators' => array(
                    'FormElements',
                    array('HtmlTag', array('tag' => 'div', 'class' => 'info'))
                )
            )
        );
    }
}