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

30 lines
868 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Forms;
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
class IcingaHostFieldForm extends DirectorObjectForm
{
public function setup()
{
$this->addElement('select', 'host_id', array(
2015-07-30 11:33:08 +02:00
'label' => 'Host Tpl',
'description' => 'Host Template',
'multiOptions' => $this->optionalEnum($this->db->enumHostTemplates())
));
$this->addElement('select', 'datafield_id', array(
2015-07-30 11:33:08 +02:00
'label' => 'Field',
'description' => 'Field to assign',
'multiOptions' => $this->optionalEnum($this->db->enumDatafields())
));
$this->optionalBoolean(
'is_required',
$this->translate('Required'),
2015-07-30 11:33:08 +02:00
$this->translate('Whether this field should be required or not')
);
}
}