1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* 2017 Romain CANON <[email protected]> |
4
|
|
|
* |
5
|
|
|
* This file is part of the TYPO3 Formz project. |
6
|
|
|
* It is free software; you can redistribute it and/or modify it |
7
|
|
|
* under the terms of the GNU General Public License, either |
8
|
|
|
* version 3 of the License, or any later version. |
9
|
|
|
* |
10
|
|
|
* For the full copyright and license information, see: |
11
|
|
|
* http://www.gnu.org/licenses/gpl-3.0.html |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
namespace Romm\Formz\Condition\Parser\Node; |
15
|
|
|
|
16
|
|
|
use Romm\Formz\Condition\Items\ConditionItemInterface; |
17
|
|
|
use Romm\Formz\Condition\Processor\ConditionProcessor; |
18
|
|
|
use Romm\Formz\Condition\Processor\DataObject\PhpConditionDataObject; |
19
|
|
|
use Romm\Formz\Configuration\Form\Condition\Activation\ActivationInterface; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* A condition node, which contains an instance of `ConditionItemInterface`. |
23
|
|
|
*/ |
24
|
|
|
class ConditionNode extends AbstractNode implements ProcessorDependencyAwareInterface |
25
|
|
|
{ |
26
|
|
|
/** |
27
|
|
|
* @var string |
28
|
|
|
*/ |
29
|
|
|
protected $conditionName; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* @var ConditionItemInterface |
33
|
|
|
*/ |
34
|
|
|
protected $condition; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* Constructor, which needs a name for the condition and an instance of a |
38
|
|
|
* condition item. |
39
|
|
|
* |
40
|
|
|
* @param string $conditionName Name of the condition. |
41
|
|
|
* @param ConditionItemInterface $condition Instance of the condition item. |
42
|
|
|
*/ |
43
|
|
|
public function __construct($conditionName, ConditionItemInterface $condition) |
44
|
|
|
{ |
45
|
|
|
$this->conditionName = $conditionName; |
46
|
|
|
$this->condition = $condition; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* @param ConditionProcessor $processor |
51
|
|
|
* @param ActivationInterface $activation |
52
|
|
|
*/ |
53
|
|
|
public function injectProcessorDependencies(ConditionProcessor $processor, ActivationInterface $activation) |
54
|
|
|
{ |
55
|
|
|
$this->condition->attachFormObject($processor->getFormObject()); |
56
|
|
|
$this->condition->attachActivation($activation); |
57
|
|
|
$this->condition->attachConditionNode($this); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* @inheritdoc |
62
|
|
|
*/ |
63
|
|
|
public function getCssResult() |
64
|
|
|
{ |
65
|
|
|
return $this->toArray($this->condition->getCssResult()); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
/** |
69
|
|
|
* @inheritdoc |
70
|
|
|
*/ |
71
|
|
|
public function getJavaScriptResult() |
72
|
|
|
{ |
73
|
|
|
return $this->toArray($this->condition->getJavaScriptResult()); |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* @inheritdoc |
78
|
|
|
*/ |
79
|
|
|
public function getPhpResult(PhpConditionDataObject $dataObject) |
80
|
|
|
{ |
81
|
|
|
$this->condition->validateConditionConfiguration(); |
82
|
|
|
|
83
|
|
|
return $this->condition->getPhpResult($dataObject); |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* @return string |
88
|
|
|
*/ |
89
|
|
|
public function getConditionName() |
90
|
|
|
{ |
91
|
|
|
return $this->conditionName; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* @return ConditionItemInterface |
96
|
|
|
*/ |
97
|
|
|
public function getCondition() |
98
|
|
|
{ |
99
|
|
|
return $this->condition; |
100
|
|
|
} |
101
|
|
|
} |
102
|
|
|
|