icingaweb2-module-director/application/forms/IcingaServiceGroupForm.php

23 lines
588 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Forms;
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
class IcingaServiceGroupForm extends DirectorObjectForm
{
public function setup()
{
2016-02-17 21:58:28 +01:00
$this->addHidden('object_type', 'object');
2015-07-30 11:33:08 +02:00
$this->addElement('text', 'object_name', array(
'label' => $this->translate('Servicegroup'),
'required' => true,
'description' => $this->translate('Icinga object name for this service group')
));
$this->addGroupDisplayNameElement()
->setButtons();
}
}