23 lines
670 B
PHP
23 lines
670 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Forms;
|
|
|
|
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
|
|
|
class IcingaServiceGroupForm extends DirectorObjectForm
|
|
{
|
|
public function setup()
|
|
{
|
|
$this->addElement('text', 'object_name', array(
|
|
'label' => $this->translate('Servicegroup'),
|
|
'required' => true,
|
|
'description' => $this->translate('Icinga object name for this servicegroup')
|
|
));
|
|
|
|
$this->addElement('text', 'display_name', array(
|
|
'label' => $this->translate('Display Name'),
|
|
'description' => $this->translate('The name which should displayed.')
|
|
));
|
|
}
|
|
}
|