PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / trunk
Secure Custom Fields vtrunk
6.9.5 6.9.4 6.9.3 6.9.2 6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / schemas / field-fragments / content / wysiwyg.schema.json
secure-custom-fields / schemas / field-fragments / content Last commit date
file.schema.json 7 months ago gallery.schema.json 7 months ago image.schema.json 7 months ago oembed.schema.json 7 months ago wysiwyg.schema.json 7 months ago
wysiwyg.schema.json
33 lines
1 {
2 "title": "SCF WYSIWYG Field Fragment",
3 "description": "Type-specific properties for WYSIWYG editor fields",
4 "type": "object",
5 "properties": {
6 "type": {
7 "enum": [ "wysiwyg" ]
8 },
9 "default_value": { "$ref": "#/definitions/default_value" },
10 "tabs": {
11 "type": "string",
12 "enum": [ "all", "visual", "text" ],
13 "default": "all",
14 "description": "Which editor tabs to show (all, visual only, or text only)"
15 },
16 "toolbar": {
17 "type": "string",
18 "default": "full",
19 "description": "Toolbar configuration (full or basic)"
20 },
21 "media_upload": {
22 "type": "integer",
23 "default": 1,
24 "description": "Show media upload button (1 for yes, 0 for no)"
25 },
26 "delay": {
27 "type": "integer",
28 "default": 0,
29 "description": "Delay TinyMCE initialization until field is clicked (1 for yes, 0 for no)"
30 }
31 }
32 }
33