File tree 4 files changed +28
-19
lines changed
4 files changed +28
-19
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ This plugin is free but if you install and find it useful then a donation to sup
49
49
## Version history ##
50
50
51
51
version Description
52
+ 2.8.1+20250214 Display config settings for width and height only for the Dressprow theme
52
53
2.8.0+20250214 Add setting to disallow javascript elements and attributes and iframes
53
54
2.7.1+20240713 Use the documented method to disable version check
54
55
2.7.0+20240707 Hide the warning about ckeditor being insecure
Original file line number Diff line number Diff line change
1
+ version 2.8.1+20250214
2
+ Display config settings for width and height only for the Dressprow theme
3
+
1
4
version 2.8.0+20250214
2
5
Add setting to disallow javascript elements and attributes and iframes
3
6
Remove obsolete toolbar parameter
Original file line number Diff line number Diff line change @@ -323,24 +323,6 @@ public function __construct()
323
323
'allowempty ' => 1 ,
324
324
'category ' => 'CKEditor ' ,
325
325
),
326
- 'ckeditor_width ' => array (
327
- 'value ' => 600 ,
328
- 'description ' => 'Width in px of CKeditor Area ' ,
329
- 'type ' => 'integer ' ,
330
- 'allowempty ' => 0 ,
331
- 'min ' => 100 ,
332
- 'max ' => 800 ,
333
- 'category ' => 'CKEditor ' ,
334
- ),
335
- 'ckeditor_height ' => array (
336
- 'value ' => 600 ,
337
- 'description ' => 'Height in px of CKeditor Area ' ,
338
- 'type ' => 'integer ' ,
339
- 'allowempty ' => 0 ,
340
- 'min ' => 100 ,
341
- 'max ' => 800 ,
342
- 'category ' => 'CKEditor ' ,
343
- ),
344
326
'ckeditor_fullmessage ' => array (
345
327
'description ' => 'Allow messages to be edited as full HTML pages ' ,
346
328
'type ' => 'boolean ' ,
@@ -357,6 +339,29 @@ public function __construct()
357
339
),
358
340
);
359
341
342
+ if ($ _SESSION ['ui ' ] == 'dressprow ' ) {
343
+ $ this ->settings += [
344
+ 'ckeditor_width ' => [
345
+ 'value ' => 600 ,
346
+ 'description ' => 'Width in px of CKeditor Area ' ,
347
+ 'type ' => 'integer ' ,
348
+ 'allowempty ' => 0 ,
349
+ 'min ' => 100 ,
350
+ 'max ' => 800 ,
351
+ 'category ' => 'CKEditor ' ,
352
+ ],
353
+ 'ckeditor_height ' => [
354
+ 'value ' => 600 ,
355
+ 'description ' => 'Height in px of CKeditor Area ' ,
356
+ 'type ' => 'integer ' ,
357
+ 'allowempty ' => 0 ,
358
+ 'min ' => 100 ,
359
+ 'max ' => 800 ,
360
+ 'category ' => 'CKEditor ' ,
361
+ ],
362
+ ];
363
+ }
364
+
360
365
if ($ this ->kcEnabled ) {
361
366
$ this ->settings += array (
362
367
'kcfinder_path ' => array (
Original file line number Diff line number Diff line change 1
- 2.8.0 +20250214
1
+ 2.8.1 +20250214
You can’t perform that action at this time.
0 commit comments