|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
|
|
4
|
|
|
|
|
5
|
|
|
class ImageStyle extends DataObject |
|
|
|
|
|
|
6
|
|
|
{ |
|
7
|
|
|
private static $default_style = 'unstyled-image'; |
|
|
|
|
|
|
8
|
|
|
|
|
9
|
|
|
public static function get_default_style() |
|
10
|
|
|
{ |
|
11
|
|
|
$defaultStyle = ImageStyle::get()->filter( |
|
12
|
|
|
[ |
|
13
|
|
|
'ClassNameForCSS' => Config::inst()->get('ImageStyle', 'default_style') |
|
14
|
|
|
] |
|
15
|
|
|
)->first(); |
|
16
|
|
|
if (! $defaultStyle) { |
|
17
|
|
|
$defaultStyle = ImageStyle::get()->first(); |
|
18
|
|
|
if (! $defaultStyle) { |
|
19
|
|
|
user_error('Could not find a default Style.'); |
|
20
|
|
|
} |
|
21
|
|
|
} |
|
22
|
|
|
|
|
23
|
|
|
return $defaultStyle; |
|
24
|
|
|
} |
|
25
|
|
|
|
|
26
|
|
|
/** |
|
27
|
|
|
* see _config folder for details ... |
|
28
|
|
|
* @var array |
|
29
|
|
|
*/ |
|
30
|
|
|
private static $record_defaults = []; |
|
|
|
|
|
|
31
|
|
|
|
|
32
|
|
|
|
|
33
|
|
|
####################### |
|
34
|
|
|
### Names Section |
|
35
|
|
|
####################### |
|
36
|
|
|
|
|
37
|
|
|
private static $singular_name = 'Image Style'; |
|
|
|
|
|
|
38
|
|
|
|
|
39
|
|
|
public function i18n_singular_name() |
|
40
|
|
|
{ |
|
41
|
|
|
return _t('ImageStyle.SINGULAR_NAME', 'Image Style'); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
private static $plural_name = 'Image Styles'; |
|
|
|
|
|
|
45
|
|
|
|
|
46
|
|
|
public function i18n_plural_name() |
|
47
|
|
|
{ |
|
48
|
|
|
return _t('ImageStyle.PLURAL_NAME', 'Image Styles'); |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
|
|
52
|
|
|
####################### |
|
53
|
|
|
### Model Section |
|
54
|
|
|
####################### |
|
55
|
|
|
|
|
56
|
|
|
private static $db = [ |
|
|
|
|
|
|
57
|
|
|
'Title' => 'Varchar', |
|
58
|
|
|
'ClassNameForCSS' => 'Varchar', |
|
59
|
|
|
'Description' => 'Text', |
|
60
|
|
|
'Var1Name' => 'Varchar', |
|
61
|
|
|
'Var1Type' => 'Enum(\'Pixels,Percentage,Options\', \'Pixels\')', |
|
62
|
|
|
'Var1Options' => 'Varchar(200)', |
|
63
|
|
|
'Var1Description' => 'Varchar(200)', |
|
64
|
|
|
|
|
65
|
|
|
'Var2Name' => 'Varchar', |
|
66
|
|
|
'Var2Type' => 'Enum(\'Pixels,Percentage,Options\', \'Pixels\')', |
|
67
|
|
|
'Var2Options' => 'Varchar(200)', |
|
68
|
|
|
'Var2Description' => 'Varchar(200)', |
|
69
|
|
|
|
|
70
|
|
|
'Var3Name' => 'Varchar', |
|
71
|
|
|
'Var3Type' => 'Enum(\'Pixels,Percentage,Options\', \'Pixels\')', |
|
72
|
|
|
'Var3Options' => 'Varchar(200)', |
|
73
|
|
|
'Var3Description' => 'Varchar(200)', |
|
74
|
|
|
|
|
75
|
|
|
'Var4Name' => 'Varchar', |
|
76
|
|
|
'Var4Type' => 'Enum(\'Pixels,Percentage,Options\', \'Pixels\')', |
|
77
|
|
|
'Var4Options' => 'Varchar(200)', |
|
78
|
|
|
'Var4Description' => 'Varchar(200)', |
|
79
|
|
|
|
|
80
|
|
|
'Var5Name' => 'Varchar', |
|
81
|
|
|
'Var5Type' => 'Enum(\'Pixels,Percentage,Options\', \'Pixels\')', |
|
82
|
|
|
'Var5Options' => 'Varchar(200)', |
|
83
|
|
|
'Var5Description' => 'Varchar(200)', |
|
84
|
|
|
|
|
85
|
|
|
]; |
|
86
|
|
|
|
|
87
|
|
|
private static $has_many = [ |
|
|
|
|
|
|
88
|
|
|
'ImagesWithStyle' => 'ImageWithStyle' |
|
89
|
|
|
]; |
|
90
|
|
|
|
|
91
|
|
|
|
|
92
|
|
|
####################### |
|
93
|
|
|
### Further DB Field Details |
|
94
|
|
|
####################### |
|
95
|
|
|
|
|
96
|
|
|
private static $indexes = [ |
|
|
|
|
|
|
97
|
|
|
'Title' => true |
|
98
|
|
|
]; |
|
99
|
|
|
|
|
100
|
|
|
private static $default_sort = [ |
|
|
|
|
|
|
101
|
|
|
'Title' => 'ASC' |
|
102
|
|
|
]; |
|
103
|
|
|
|
|
104
|
|
|
private static $required_fields = [ |
|
|
|
|
|
|
105
|
|
|
'Title', |
|
106
|
|
|
'ClassNameForCSS' |
|
107
|
|
|
]; |
|
108
|
|
|
|
|
109
|
|
|
private static $searchable_fields = [ |
|
|
|
|
|
|
110
|
|
|
'Title' => 'PartialMatchFilter', |
|
111
|
|
|
'Description' => 'PartialMatchFilter', |
|
112
|
|
|
'ClassNameForCSS' => 'PartialMatchFilter' |
|
113
|
|
|
]; |
|
114
|
|
|
|
|
115
|
|
|
|
|
116
|
|
|
####################### |
|
117
|
|
|
### Field Names and Presentation Section |
|
118
|
|
|
####################### |
|
119
|
|
|
|
|
120
|
|
|
private static $field_labels = [ |
|
|
|
|
|
|
121
|
|
|
'Title' => 'Style', |
|
122
|
|
|
|
|
123
|
|
|
'Var1Name' => 'Variable 1 Label', |
|
124
|
|
|
'Var1Type' => 'Variable 1 Type', |
|
125
|
|
|
'Var1Options' => 'Variable 1 Options', |
|
126
|
|
|
'Var1Description' => 'Variable 1 Description', |
|
127
|
|
|
|
|
128
|
|
|
'Var2Name' => 'Variable 2 Label', |
|
129
|
|
|
'Var2Type' => 'Variable 2 Type', |
|
130
|
|
|
'Var2Options' => 'Variable 1 Options', |
|
131
|
|
|
'Var2Description' => 'Variable 1 Description', |
|
132
|
|
|
|
|
133
|
|
|
'Var3Name' => 'Variable 3 Label', |
|
134
|
|
|
'Var3Type' => 'Variable 3 Type', |
|
135
|
|
|
'Var3Options' => 'Variable 1 Options', |
|
136
|
|
|
'Var4Description' => 'Variable 1 Description', |
|
137
|
|
|
|
|
138
|
|
|
'Var4Name' => 'Variable 4 Label', |
|
139
|
|
|
'Var4Type' => 'Variable 4 Type', |
|
140
|
|
|
'Var4Options' => 'Variable 4 Options', |
|
141
|
|
|
'Var4Description' => 'Variable 4 Description', |
|
142
|
|
|
|
|
143
|
|
|
'Var5Name' => 'Variable 5 Label', |
|
144
|
|
|
'Var5Type' => 'Variable 5 Type', |
|
145
|
|
|
'Var5Options' => 'Variable 5 Options', |
|
146
|
|
|
'Var5Description' => 'Variable 5 Description', |
|
147
|
|
|
]; |
|
148
|
|
|
|
|
149
|
|
|
private static $field_labels_right = []; |
|
|
|
|
|
|
150
|
|
|
|
|
151
|
|
|
private static $summary_fields = [ |
|
|
|
|
|
|
152
|
|
|
'Title' => 'Style', |
|
153
|
|
|
'ImagesWithStyle.Count' => 'Usage Count' |
|
154
|
|
|
]; |
|
155
|
|
|
|
|
156
|
|
|
|
|
157
|
|
|
####################### |
|
158
|
|
|
### Casting Section |
|
159
|
|
|
####################### |
|
160
|
|
|
|
|
161
|
|
|
|
|
162
|
|
|
####################### |
|
163
|
|
|
### can Section |
|
164
|
|
|
####################### |
|
165
|
|
|
|
|
166
|
|
|
public function canCreate($member = null) |
|
167
|
|
|
{ |
|
168
|
|
|
return false; |
|
169
|
|
|
} |
|
170
|
|
|
|
|
171
|
|
|
public function canEdit($member = null) |
|
172
|
|
|
{ |
|
173
|
|
|
//we block edits in CMS |
|
174
|
|
|
return parent::canEdit($member); |
|
175
|
|
|
} |
|
176
|
|
|
|
|
177
|
|
|
public function canDelete($member = null) |
|
178
|
|
|
{ |
|
179
|
|
|
if ($this->ImagesWithStyle()->count() === 0) { |
|
|
|
|
|
|
180
|
|
|
return parent::canDelete($member); |
|
181
|
|
|
} |
|
182
|
|
|
|
|
183
|
|
|
return false; |
|
184
|
|
|
} |
|
185
|
|
|
|
|
186
|
|
|
|
|
187
|
|
|
|
|
188
|
|
|
####################### |
|
189
|
|
|
### write Section |
|
190
|
|
|
####################### |
|
191
|
|
|
|
|
192
|
|
|
|
|
193
|
|
|
|
|
194
|
|
|
|
|
195
|
|
View Code Duplication |
public function validate() |
|
|
|
|
|
|
196
|
|
|
{ |
|
197
|
|
|
$result = parent::validate(); |
|
198
|
|
|
$fieldLabels = $this->FieldLabels(); |
|
199
|
|
|
$indexes = $this->Config()->get('indexes'); |
|
200
|
|
|
$requiredFields = $this->Config()->get('required_fields'); |
|
201
|
|
|
if (is_array($requiredFields)) { |
|
202
|
|
|
foreach ($requiredFields as $field) { |
|
203
|
|
|
$value = $this->$field; |
|
204
|
|
|
if (! $value) { |
|
205
|
|
|
$fieldWithoutID = $field; |
|
206
|
|
|
if (substr($fieldWithoutID, -2) === 'ID') { |
|
207
|
|
|
$fieldWithoutID = substr($fieldWithoutID, 0, -2); |
|
208
|
|
|
} |
|
209
|
|
|
$myName = isset($fieldLabels[$fieldWithoutID]) ? $fieldLabels[$fieldWithoutID] : $fieldWithoutID; |
|
210
|
|
|
$result->error( |
|
211
|
|
|
_t( |
|
212
|
|
|
'ImageStyle.'.$field.'_REQUIRED', |
|
213
|
|
|
$myName.' is required' |
|
214
|
|
|
), |
|
215
|
|
|
'REQUIRED_ImageStyle_'.$field |
|
216
|
|
|
); |
|
217
|
|
|
} |
|
218
|
|
|
if (isset($indexes[$field]) && isset($indexes[$field]['type']) && $indexes[$field]['type'] === 'unique') { |
|
219
|
|
|
$id = (empty($this->ID) ? 0 : $this->ID); |
|
220
|
|
|
$count = ImageStyle::get() |
|
221
|
|
|
->filter(array($field => $value)) |
|
222
|
|
|
->exclude(array('ID' => $id)) |
|
223
|
|
|
->count(); |
|
224
|
|
|
if ($count > 0) { |
|
225
|
|
|
$myName = $fieldLabels['$field']; |
|
226
|
|
|
$result->error( |
|
227
|
|
|
_t( |
|
228
|
|
|
'ImageStyle.'.$field.'_UNIQUE', |
|
229
|
|
|
$myName.' needs to be unique' |
|
230
|
|
|
), |
|
231
|
|
|
'UNIQUE_ImageStyle_'.$field |
|
232
|
|
|
); |
|
233
|
|
|
} |
|
234
|
|
|
} |
|
235
|
|
|
} |
|
236
|
|
|
} |
|
237
|
|
|
|
|
238
|
|
|
return $result; |
|
239
|
|
|
} |
|
240
|
|
|
|
|
241
|
|
|
public function onBeforeWrite() |
|
242
|
|
|
{ |
|
243
|
|
|
parent::onBeforeWrite(); |
|
244
|
|
|
$this->ClassNameForCSS = preg_replace('/\W+/', '-', strtolower(strip_tags($this->ClassNameForCSS))); |
|
|
|
|
|
|
245
|
|
|
if (! $this->ClassNameForCSS) { |
|
|
|
|
|
|
246
|
|
|
$this->ClassNameForCSS = 'image-with-style-'.$this->ID; |
|
|
|
|
|
|
247
|
|
|
} |
|
248
|
|
|
//... |
|
249
|
|
|
} |
|
250
|
|
|
|
|
251
|
|
|
public function onAfterWrite() |
|
252
|
|
|
{ |
|
253
|
|
|
parent::onAfterWrite(); |
|
254
|
|
|
//... |
|
255
|
|
|
} |
|
256
|
|
|
|
|
257
|
|
|
public function requireDefaultRecords() |
|
258
|
|
|
{ |
|
259
|
|
|
parent::requireDefaultRecords(); |
|
260
|
|
|
//... |
|
261
|
|
|
$defaults = $this->Config()->record_defaults; |
|
262
|
|
|
$currentOnes = array_flip(ImageStyle::get()->column('ID')); |
|
263
|
|
|
$imageNames = Config::inst()->get('PerfectCMSImageDataExtension', 'perfect_cms_images_image_definitions'); |
|
264
|
|
|
foreach ($defaults as $defaultValues) { |
|
265
|
|
|
foreach ($defaultValues as $field => $value) { |
|
266
|
|
|
if (is_array($value)) { |
|
267
|
|
|
$defaultValues[$field] = serialize($value); |
|
268
|
|
|
} |
|
269
|
|
|
} |
|
270
|
|
|
$obj = ImageStyle::get()->filter(['Title' => $defaultValues['Title']])->first(); |
|
271
|
|
|
if (!$obj) { |
|
272
|
|
|
$obj = ImageStyle::create($defaultValues); |
|
273
|
|
|
} else { |
|
274
|
|
|
foreach ($obj->db() as $field => $type) { |
|
275
|
|
|
$obj->$field = null; |
|
276
|
|
|
} |
|
277
|
|
|
foreach ($defaultValues as $field => $value) { |
|
278
|
|
|
$obj->$field = $value; |
|
279
|
|
|
} |
|
280
|
|
|
} |
|
281
|
|
|
unset($currentOnes[$obj->ID]); |
|
282
|
|
|
$obj->write(); |
|
283
|
|
|
if (! isset($imageNames[$obj->ClassNameForCSS])) { |
|
|
|
|
|
|
284
|
|
|
user_error('You need to define a perfect CMS image with the following name: '.$obj->ClassNameForCSS); |
|
|
|
|
|
|
285
|
|
|
} |
|
286
|
|
|
} |
|
287
|
|
|
foreach ($currentOnes as $id) { |
|
288
|
|
|
$obj = ImageStyle::get()->byID($id); |
|
289
|
|
|
if ($obj && $obj->canDelete()) { |
|
290
|
|
|
$obj->delete(); |
|
291
|
|
|
} |
|
292
|
|
|
} |
|
293
|
|
|
} |
|
294
|
|
|
|
|
295
|
|
|
|
|
296
|
|
|
####################### |
|
297
|
|
|
### Import / Export Section |
|
298
|
|
|
####################### |
|
299
|
|
|
|
|
300
|
|
|
public function getExportFields() |
|
|
|
|
|
|
301
|
|
|
{ |
|
302
|
|
|
//.. |
|
303
|
|
|
return parent::getExportFields(); |
|
|
|
|
|
|
304
|
|
|
} |
|
305
|
|
|
|
|
306
|
|
|
|
|
307
|
|
|
|
|
308
|
|
|
####################### |
|
309
|
|
|
### CMS Edit Section |
|
310
|
|
|
####################### |
|
311
|
|
|
|
|
312
|
|
|
|
|
313
|
|
|
public function CMSEditLink() |
|
314
|
|
|
{ |
|
315
|
|
|
$controller = singleton("tba"); |
|
316
|
|
|
|
|
317
|
|
|
return $controller->Link().$this->ClassName."/EditForm/field/".$this->ClassName."/item/".$this->ID."/edit"; |
|
318
|
|
|
} |
|
319
|
|
|
|
|
320
|
|
|
public function CMSAddLink() |
|
321
|
|
|
{ |
|
322
|
|
|
$controller = singleton("tba"); |
|
323
|
|
|
|
|
324
|
|
|
return $controller->Link().$this->ClassName."/EditForm/field/".$this->ClassName."/item/new"; |
|
325
|
|
|
} |
|
326
|
|
|
|
|
327
|
|
|
|
|
328
|
|
|
public function getCMSFields() |
|
329
|
|
|
{ |
|
330
|
|
|
$fields = parent::getCMSFields(); |
|
331
|
|
|
|
|
332
|
|
|
//do first?? |
|
333
|
|
|
$rightFieldDescriptions = $this->Config()->get('field_labels_right'); |
|
334
|
|
View Code Duplication |
foreach ($rightFieldDescriptions as $field => $desc) { |
|
|
|
|
|
|
335
|
|
|
$formField = $fields->DataFieldByName($field); |
|
336
|
|
|
if (! $formField) { |
|
337
|
|
|
$formField = $fields->DataFieldByName($field.'ID'); |
|
338
|
|
|
} |
|
339
|
|
|
if ($formField) { |
|
340
|
|
|
$formField->setDescription($desc); |
|
341
|
|
|
} |
|
342
|
|
|
} |
|
343
|
|
|
|
|
344
|
|
|
// move variables to their own tab |
|
345
|
|
|
for ($i = 1; $i < 6; $i++) { |
|
346
|
|
|
if ($this->HasStyleVariable('Var'.$i)) { |
|
347
|
|
|
$fieldsToAdd = [ |
|
348
|
|
|
$fields->dataFieldByName('Var'.$i.'Name'), |
|
349
|
|
|
$fields->dataFieldByName('Var'.$i.'Type'), |
|
350
|
|
|
$fields->dataFieldByName('Var'.$i.'Options'), |
|
351
|
|
|
$fields->dataFieldByName('Var'.$i.'Description') |
|
352
|
|
|
]; |
|
353
|
|
|
$fields->addFieldsToTab( |
|
354
|
|
|
'Root.Variable '.$i, |
|
355
|
|
|
$fieldsToAdd |
|
356
|
|
|
); |
|
357
|
|
|
} else { |
|
358
|
|
|
$fields->removeByName('Var'.$i.'Name'); |
|
359
|
|
|
$fields->removeByName('Var'.$i.'Type'); |
|
360
|
|
|
$fields->removeByName('Var'.$i.'Options'); |
|
361
|
|
|
$fields->removeByName('Var'.$i.'Description'); |
|
362
|
|
|
} |
|
363
|
|
|
} |
|
364
|
|
|
$fields->removeByName('ImagesWithStyle'); |
|
365
|
|
|
|
|
366
|
|
|
//make everything readonly |
|
367
|
|
|
foreach ($fields->saveableFields() as $field) { |
|
368
|
|
|
$fieldName = $field->getName(); |
|
369
|
|
|
$oldField = $fields->dataFieldByName($fieldName); |
|
370
|
|
|
if ($oldField) { |
|
371
|
|
|
$newField = $oldField->performReadonlyTransformation(); |
|
372
|
|
|
$fields->replaceField($fieldName, $newField); |
|
373
|
|
|
} |
|
374
|
|
|
} |
|
375
|
|
|
|
|
376
|
|
|
return $fields; |
|
377
|
|
|
} |
|
378
|
|
|
|
|
379
|
|
|
|
|
380
|
|
|
public function HasStyleVariable($varName) |
|
381
|
|
|
{ |
|
382
|
|
|
$name = $varName.'Name'; |
|
383
|
|
|
$type = $varName.'Type'; |
|
384
|
|
|
$hasBase = $this->$name && $this->$type ? true : false; |
|
385
|
|
|
if ($this->$type === 'Options') { |
|
386
|
|
|
return $hasBase && is_array($this->OptionsAsArray($varName)) ? true : false; |
|
387
|
|
|
} else { |
|
388
|
|
|
return $hasBase; |
|
389
|
|
|
} |
|
390
|
|
|
} |
|
391
|
|
|
public function HasOptionsAsArray($varName) |
|
392
|
|
|
{ |
|
393
|
|
|
$options = $this->OptionsAsArray($varName); |
|
394
|
|
|
|
|
395
|
|
|
return count($options) ? true : false; |
|
396
|
|
|
} |
|
397
|
|
|
|
|
398
|
|
|
public function OptionsAsArray($varName) |
|
399
|
|
|
{ |
|
400
|
|
|
$options = $varName.'Options'; |
|
401
|
|
|
$array = []; |
|
402
|
|
|
if ($this->$options) { |
|
403
|
|
|
$array = @unserialize($this->$options); |
|
404
|
|
|
} |
|
405
|
|
|
if (is_array($array)) { |
|
406
|
|
|
return $array; |
|
407
|
|
|
} |
|
408
|
|
|
|
|
409
|
|
|
return []; |
|
410
|
|
|
} |
|
411
|
|
|
} |
|
412
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.