1 | <?php |
||
12 | class SimplePropertyBuilder { |
||
13 | |||
14 | const MAIN_LANGUAGE = 'en'; |
||
15 | |||
16 | private $languageCode; |
||
17 | |||
18 | /** |
||
19 | * @var Property |
||
20 | */ |
||
21 | private $property; |
||
22 | |||
23 | /** |
||
24 | * @var SimpleProperty |
||
25 | */ |
||
26 | private $simpleProperty; |
||
27 | |||
28 | 3 | public function __construct( $languageCode ) { |
|
31 | |||
32 | 3 | public function buildFromProperty( Property $property ) { |
|
46 | |||
47 | 3 | private function addIdLinks() { |
|
50 | |||
51 | 3 | private function addLabel() { |
|
56 | |||
57 | 3 | private function addDescription() { |
|
62 | |||
63 | 3 | private function addAliases() { |
|
68 | |||
69 | 3 | private function addType() { |
|
72 | |||
73 | } |
||
74 |