41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
|
<?php
|
||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||
|
|
||
|
namespace Icinga\Module\Monitoring\Form\Setup;
|
||
|
|
||
|
use Icinga\Web\Form;
|
||
|
use Icinga\Web\Form\Element\Note;
|
||
|
use Icinga\Module\Monitoring\Form\Config\InstanceConfigForm;
|
||
|
|
||
|
class InstancePage extends Form
|
||
|
{
|
||
|
public function init()
|
||
|
{
|
||
|
$this->setName('setup_monitoring_instance');
|
||
|
}
|
||
|
|
||
|
public function createElements(array $formData)
|
||
|
{
|
||
|
$this->addElement(
|
||
|
new Note(
|
||
|
'description',
|
||
|
array(
|
||
|
'value' => mt(
|
||
|
'monitoring',
|
||
|
'Please define the settings specific to your monitoring instance below.'
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
);
|
||
|
|
||
|
if (isset($formData['host'])) {
|
||
|
$formData['type'] = 'remote'; // This is necessary as the type element gets ignored by Form::getValues()
|
||
|
}
|
||
|
|
||
|
$instanceConfigForm = new InstanceConfigForm();
|
||
|
$instanceConfigForm->createElements($formData);
|
||
|
$this->addElements($instanceConfigForm->getElements());
|
||
|
}
|
||
|
}
|