blob: 3acbdd34f14ca9cedbf26b8984e23a51877d3c22 (
plain)
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
|
<?php
namespace Icinga\Module\Director\Objects\Extension;
use Icinga\Module\Director\Objects\IcingaArguments;
use Icinga\Module\Director\Objects\IcingaObject;
trait Arguments
{
private $arguments;
public function arguments()
{
/** @var IcingaObject $this */
if ($this->arguments === null) {
if ($this->hasBeenLoadedFromDb()) {
$this->arguments = IcingaArguments::loadForStoredObject($this);
} else {
$this->arguments = new IcingaArguments($this);
}
}
return $this->arguments;
}
public function gotArguments()
{
return null !== $this->arguments;
}
public function unsetArguments()
{
unset($this->arguments);
}
/**
* @return string
*/
protected function renderArguments()
{
return $this->arguments()->toConfigString();
}
/**
* @param $value
* @return $this
*/
protected function setArguments($value)
{
$this->arguments()->setArguments($value);
return $this;
}
/**
* @return array
*/
protected function getArguments()
{
return $this->arguments()->toPlainObject();
}
}
|