| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "wpforo/forums", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "wpForo Forums", |
| 7 |
"category": "widgets", |
| 8 |
"description": "Forum tree.", |
| 9 |
"attributes": { |
| 10 |
"title": { |
| 11 |
"type": "string", |
| 12 |
"default": "Forums" |
| 13 |
}, |
| 14 |
"boardid": { |
| 15 |
"type": "number", |
| 16 |
"default": 0 |
| 17 |
}, |
| 18 |
"dropdown": { |
| 19 |
"type": "boolean", |
| 20 |
"default": false |
| 21 |
} |
| 22 |
}, |
| 23 |
"supports": { |
| 24 |
"html": false |
| 25 |
}, |
| 26 |
"textdomain": "wpforo", |
| 27 |
"editorScript": "wpforo-forums-editor-script", |
| 28 |
"editorStyle": "wpforo-forums-editor-style", |
| 29 |
"render": "file:./render.php" |
| 30 |
} |
| 31 |
|