1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<?php
namespace Icinga\Module\Director\Forms;
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
class IcingaTimePeriodForm extends DirectorObjectForm
{
/**
* @throws \Zend_Form_Exception
*/
public function setup()
{
$this->addElement('text', 'object_name', [
'label' => $this->translate('Name'),
'required' => true,
]);
$this->addElement('text', 'display_name', [
'label' => $this->translate('Display Name'),
]);
if ($this->isTemplate()) {
$this->addElement('text', 'update_method', [
'label' => $this->translate('Update Method'),
'value' => 'LegacyTimePeriod',
]);
} else {
// TODO: I'd like to skip this for objects inheriting from a template
// with a defined update_method. However, unfortunately it's too
// early for $this->object()->getResolvedProperty('update_method').
// Should be fixed.
$this->addHidden('update_method', 'LegacyTimePeriod');
}
$this->addIncludeExclude()
->addImportsElement()
->setButtons();
}
/**
* @return $this
* @throws \Zend_Form_Exception
*/
protected function addIncludeExclude()
{
$periods = [];
foreach ($this->db->enumTimeperiods() as $id => $period) {
if ($this->object === null || $this->object->get('object_name') !== $period) {
$periods[$period] = $period;
}
}
if (empty($periods)) {
return $this;
}
$this->addElement('extensibleSet', 'includes', [
'label' => $this->translate('Include period'),
'multiOptions' => $this->optionalEnum($periods),
'description' => $this->translate(
'Include other time periods into this.'
),
]);
$this->addElement('extensibleSet', 'excludes', [
'label' => $this->translate('Exclude period'),
'multiOptions' => $this->optionalEnum($periods),
'description' => $this->translate(
'Exclude other time periods from this.'
),
]);
$this->optionalBoolean(
'prefer_includes',
$this->translate('Prefer includes'),
$this->translate('Whether to prefer timeperiods includes or excludes. Default to true.')
);
return $this;
}
}
|