This repository was archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathExtensions.php
More file actions
237 lines (204 loc) · 5.33 KB
/
Copy pathExtensions.php
File metadata and controls
237 lines (204 loc) · 5.33 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?php
/*
* This file is part of the SgDatatablesBundle package.
*
* (c) stwe <https://github.com/stwe/DatatablesBundle>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sg\DatatablesBundle\Datatable;
use Sg\DatatablesBundle\Datatable\Extension\Buttons;
use Sg\DatatablesBundle\Datatable\Extension\Responsive;
use Sg\DatatablesBundle\Datatable\Extension\RowGroup;
use Sg\DatatablesBundle\Datatable\Extension\Select;
use Sg\DatatablesBundle\Datatable\Extension\FixedHeader;
use Symfony\Component\OptionsResolver\OptionsResolver;
class Extensions
{
use OptionsTrait;
//-------------------------------------------------
// DataTables - Extensions
//-------------------------------------------------
/**
* The Buttons extension.
* Default: null.
*
* @var array|bool|Buttons|null
*/
protected $buttons;
/**
* The Responsive Extension.
* Automatically optimise the layout for different screen sizes.
* Default: null.
*
* @var array|bool|Responsive|null
*/
protected $responsive;
/**
* The Select Extension.
* Select adds item selection capabilities to a DataTable.
* Default: null.
*
* @var array|bool|Select|null
*/
protected $select;
/**
* The RowGroup Extension.
* Automatically group rows.
* Default: null.
*
* @var array|bool|RowGroup|null
*/
protected $rowGroup;
/**
* The FixedHeader Extension.
* Shows table's header and / or footer fixed to the top or bottom of the scrolling window.
* Default: null.
*
* @var array|bool|RowGroup|null
*/
protected $fixedHeader;
public function __construct()
{
$this->initOptions();
}
//-------------------------------------------------
// Options
//-------------------------------------------------
/**
* @return $this
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'buttons' => null,
'responsive' => null,
'select' => null,
'row_group' => null,
'fixed_header' => null,
]);
$resolver->setAllowedTypes('buttons', ['null', 'array', 'bool']);
$resolver->setAllowedTypes('responsive', ['null', 'array', 'bool']);
$resolver->setAllowedTypes('select', ['null', 'array', 'bool']);
$resolver->setAllowedTypes('row_group', ['null', 'array', 'bool']);
$resolver->setAllowedTypes('fixed_header', ['null', 'array', 'bool']);
return $this;
}
//-------------------------------------------------
// Getters && Setters
//-------------------------------------------------
/**
* @return array|bool|Buttons|null
*/
public function getButtons()
{
return $this->buttons;
}
/**
* @param array|bool|null $buttons
*
* @return $this
*/
public function setButtons($buttons)
{
if (\is_array($buttons)) {
$newButton = new Buttons();
$this->buttons = $newButton->set($buttons);
} else {
$this->buttons = $buttons;
}
return $this;
}
/**
* @return array|bool|Responsive|null
*/
public function getResponsive()
{
return $this->responsive;
}
/**
* @param array|bool|null $responsive
*
* @return $this
*/
public function setResponsive($responsive)
{
if (\is_array($responsive)) {
$newResponsive = new Responsive();
$this->responsive = $newResponsive->set($responsive);
} else {
$this->responsive = $responsive;
}
return $this;
}
/**
* @return array|bool|Select|null
*/
public function getSelect()
{
return $this->select;
}
/**
* @param array|bool|null $select
*
* @return $this
*/
public function setSelect($select)
{
if (\is_array($select)) {
$newSelect = new Select();
$this->select = $newSelect->set($select);
} else {
$this->select = $select;
}
return $this;
}
/**
* @return array|bool|RowGroup|null
*/
public function getRowGroup()
{
return $this->rowGroup;
}
/**
* @param array|bool|null $rowGroup
*
* @throws \Exception
*
* @return $this
*/
public function setRowGroup($rowGroup)
{
if (\is_array($rowGroup)) {
$newRowGroup = new RowGroup();
$this->rowGroup = $newRowGroup->set($rowGroup);
} else {
$this->rowGroup = $rowGroup;
}
return $this;
}
/**
* @return array|bool|FixedHeader|null
*/
public function getFixedHeader()
{
return $this->fixedHeader;
}
/**
* @param array|bool|null $fixedHeader
*
* @return $this
* @throws \Exception
*/
public function setFixedHeader($fixedHeader)
{
if (\is_array($fixedHeader)) {
$newFixedHeader = new FixedHeader();
$this->fixedHeader = $newFixedHeader->set($fixedHeader);
} else {
$this->fixedHeader = $fixedHeader;
}
return $this;
}
}