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\Configuration\View\Layouts; |
15
|
|
|
|
16
|
|
|
use Romm\ConfigurationObject\Traits\ConfigurationObject\StoreArrayIndexTrait; |
17
|
|
|
use Romm\Formz\Configuration\AbstractFormzConfiguration; |
18
|
|
|
|
19
|
|
|
class LayoutGroup extends AbstractFormzConfiguration |
20
|
|
|
{ |
21
|
|
|
use StoreArrayIndexTrait; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @var \Romm\Formz\Configuration\View\Layouts\Layout[] |
25
|
|
|
*/ |
26
|
|
|
protected $items = []; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* @var string |
30
|
|
|
* @validate NotEmpty |
31
|
|
|
*/ |
32
|
|
|
protected $templateFile; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @return string |
36
|
|
|
*/ |
37
|
|
|
public function getName() |
38
|
|
|
{ |
39
|
|
|
return $this->getArrayIndex(); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @return Layout[] |
44
|
|
|
*/ |
45
|
|
|
public function getItems() |
46
|
|
|
{ |
47
|
|
|
return $this->items; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @param string $itemName |
52
|
|
|
* @return bool |
53
|
|
|
*/ |
54
|
|
|
public function hasItem($itemName) |
55
|
|
|
{ |
56
|
|
|
return true === isset($this->items[$itemName]); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @param string $itemName |
61
|
|
|
* @return Layout|null |
62
|
|
|
*/ |
63
|
|
|
public function getItem($itemName) |
64
|
|
|
{ |
65
|
|
|
return (true === isset($this->items[$itemName])) |
66
|
|
|
? $this->items[$itemName] |
67
|
|
|
: null; |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* @return string |
72
|
|
|
*/ |
73
|
|
|
public function getTemplateFile() |
74
|
|
|
{ |
75
|
|
|
return $this->templateFile; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* @param string $templateFile |
80
|
|
|
*/ |
81
|
|
|
public function setTemplateFile($templateFile) |
82
|
|
|
{ |
83
|
|
|
$this->templateFile = $templateFile; |
84
|
|
|
} |
85
|
|
|
} |
86
|
|
|
|