1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the Sylius package. |
5
|
|
|
* |
6
|
|
|
* (c) Paweł Jędrzejewski |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Sylius\Component\Product\Model; |
13
|
|
|
|
14
|
|
|
use Sylius\Component\Resource\Model\TranslatableTrait; |
15
|
|
|
use Sylius\Component\Resource\Model\TranslationInterface; |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* @author Paweł Jędrzejewski <[email protected]> |
19
|
|
|
*/ |
20
|
|
|
class ProductOptionValue implements ProductOptionValueInterface |
|
|
|
|
21
|
|
|
{ |
22
|
|
|
use TranslatableTrait { |
23
|
|
|
__construct as private initializeTranslationCollection; |
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* @var mixed |
28
|
|
|
*/ |
29
|
|
|
protected $id; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* @var string |
33
|
|
|
*/ |
34
|
|
|
protected $code; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @var ProductOptionInterface |
38
|
|
|
*/ |
39
|
|
|
protected $option; |
40
|
|
|
|
41
|
|
|
public function __construct() |
42
|
|
|
{ |
43
|
|
|
$this->initializeTranslationCollection(); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* {@inheritdoc} |
48
|
|
|
*/ |
49
|
|
|
public function __toString() |
50
|
|
|
{ |
51
|
|
|
return $this->getValue(); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* {@inheritdoc} |
56
|
|
|
*/ |
57
|
|
|
public function getId() |
58
|
|
|
{ |
59
|
|
|
return $this->id; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* {@inheritdoc} |
64
|
|
|
*/ |
65
|
|
|
public function getCode() |
66
|
|
|
{ |
67
|
|
|
return $this->code; |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* {@inheritdoc} |
72
|
|
|
*/ |
73
|
|
|
public function setCode($code) |
74
|
|
|
{ |
75
|
|
|
$this->code = $code; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* {@inheritdoc} |
80
|
|
|
*/ |
81
|
|
|
public function getOption() |
82
|
|
|
{ |
83
|
|
|
return $this->option; |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* {@inheritdoc} |
88
|
|
|
*/ |
89
|
|
|
public function setOption(ProductOptionInterface $option = null) |
90
|
|
|
{ |
91
|
|
|
$this->option = $option; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* {@inheritdoc} |
96
|
|
|
*/ |
97
|
|
|
public function getValue() |
98
|
|
|
{ |
99
|
|
|
return $this->getTranslation()->getValue(); |
|
|
|
|
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
/** |
103
|
|
|
* {@inheritdoc} |
104
|
|
|
*/ |
105
|
|
|
public function setValue($value) |
106
|
|
|
{ |
107
|
|
|
$this->getTranslation()->setValue($value); |
|
|
|
|
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
/** |
111
|
|
|
* {@inheritdoc} |
112
|
|
|
*/ |
113
|
|
|
public function getOptionCode() |
114
|
|
|
{ |
115
|
|
|
if (null === $this->option) { |
116
|
|
|
throw new \BadMethodCallException('The option have not been created yet so you cannot access proxy methods.'); |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
return $this->option->getCode(); |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
/** |
123
|
|
|
* {@inheritdoc} |
124
|
|
|
*/ |
125
|
|
|
public function getName() |
126
|
|
|
{ |
127
|
|
|
if (null === $this->option) { |
128
|
|
|
throw new \BadMethodCallException('The option have not been created yet so you cannot access proxy methods.'); |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
return $this->option->getName(); |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
/** |
135
|
|
|
* {@inheritdoc} |
136
|
|
|
*/ |
137
|
|
|
protected function createTranslation() |
138
|
|
|
{ |
139
|
|
|
return new ProductOptionValueTranslation(); |
140
|
|
|
} |
141
|
|
|
} |
142
|
|
|
|