Skip to content

Commit f3127ed

Browse files
committed
Display config settings for width and height only for the Dressprow theme
1 parent 61eb8b8 commit f3127ed

File tree

4 files changed

+28
-19
lines changed

4 files changed

+28
-19
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ This plugin is free but if you install and find it useful then a donation to sup
4949
## Version history ##
5050

5151
version Description
52+
2.8.1+20250214 Display config settings for width and height only for the Dressprow theme
5253
2.8.0+20250214 Add setting to disallow javascript elements and attributes and iframes
5354
2.7.1+20240713 Use the documented method to disable version check
5455
2.7.0+20240707 Hide the warning about ckeditor being insecure

changelog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
version 2.8.1+20250214
2+
Display config settings for width and height only for the Dressprow theme
3+
14
version 2.8.0+20250214
25
Add setting to disallow javascript elements and attributes and iframes
36
Remove obsolete toolbar parameter

plugins/CKEditorPlugin.php

+23-18
Original file line numberDiff line numberDiff line change
@@ -323,24 +323,6 @@ public function __construct()
323323
'allowempty' => 1,
324324
'category' => 'CKEditor',
325325
),
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-
),
344326
'ckeditor_fullmessage' => array(
345327
'description' => 'Allow messages to be edited as full HTML pages',
346328
'type' => 'boolean',
@@ -357,6 +339,29 @@ public function __construct()
357339
),
358340
);
359341

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+
360365
if ($this->kcEnabled) {
361366
$this->settings += array(
362367
'kcfinder_path' => array(

plugins/CKEditorPlugin/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.0+20250214
1+
2.8.1+20250214

0 commit comments

Comments
 (0)