mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-04 22:32:55 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Icinga\Module\Director\Forms;
|
|
|
|
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
|
|
|
class IcingaHostGroupForm extends DirectorObjectForm
|
|
{
|
|
public function setup()
|
|
{
|
|
$this->addHidden('object_type', 'object');
|
|
|
|
$this->addElement('text', 'object_name', [
|
|
'label' => $this->translate('Hostgroup'),
|
|
'required' => true,
|
|
'description' => $this->translate('Icinga object name for this host group')
|
|
]);
|
|
|
|
$this->addGroupDisplayNameElement()
|
|
->addAssignmentElements()
|
|
->setButtons();
|
|
}
|
|
|
|
protected function addAssignmentElements()
|
|
{
|
|
$this->addAssignFilter([
|
|
'suggestionContext' => 'HostFilterColumns',
|
|
'required' => false,
|
|
'description' => $this->translate(
|
|
'This allows you to configure an assignment filter. Please feel'
|
|
. ' free to combine as many nested operators as you want. The'
|
|
. ' "contains" operator is valid for arrays only. Please use'
|
|
. ' wildcards and the = (equals) operator when searching for'
|
|
. ' partial string matches, like in *.example.com'
|
|
)
|
|
]);
|
|
|
|
return $this;
|
|
}
|
|
}
|