| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "wpforo/recent-topics", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "wpForo Recent Topics", |
| 7 |
"category": "widgets", |
| 8 |
"description": "Your forum's recent topics.", |
| 9 |
"attributes": { |
| 10 |
"boardid": { |
| 11 |
"type": "number", |
| 12 |
"default": 0 |
| 13 |
}, |
| 14 |
"title": { |
| 15 |
"type": "string", |
| 16 |
"default": "Recent Topics" |
| 17 |
}, |
| 18 |
"forumids": { |
| 19 |
"type": "array", |
| 20 |
"default": [] |
| 21 |
}, |
| 22 |
"orderby": { |
| 23 |
"type": "string", |
| 24 |
"default": "created" |
| 25 |
}, |
| 26 |
"order": { |
| 27 |
"type": "string", |
| 28 |
"default": "DESC" |
| 29 |
}, |
| 30 |
"count": { |
| 31 |
"type": "number", |
| 32 |
"default": 9 |
| 33 |
}, |
| 34 |
"display_avatar": { |
| 35 |
"type": "boolean", |
| 36 |
"default": true |
| 37 |
}, |
| 38 |
"forumids_filter": { |
| 39 |
"type": "boolean", |
| 40 |
"default": false |
| 41 |
}, |
| 42 |
"current_forumid_filter": { |
| 43 |
"type": "boolean", |
| 44 |
"default": false |
| 45 |
}, |
| 46 |
"goto_unread": { |
| 47 |
"type": "boolean", |
| 48 |
"default": false |
| 49 |
}, |
| 50 |
"refresh_interval": { |
| 51 |
"type": "number", |
| 52 |
"default": 0 |
| 53 |
} |
| 54 |
}, |
| 55 |
"supports": { |
| 56 |
"html": false |
| 57 |
}, |
| 58 |
"textdomain": "wpforo", |
| 59 |
"editorScript": "wpforo-recent-topics-editor-script", |
| 60 |
"editorStyle": "wpforo-recent-topics-editor-style", |
| 61 |
"render": "file:./render.php" |
| 62 |
} |
| 63 |
|