PluginProbe
wpForo Forum / 3.1.6
wpForo Forum v3.1.6
3.1.6 3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 All 138 releases
wpforo / blocks / recent-topics / block.json

block.json in wpForo Forum 3.1.6, at blocks/recent-topics/block.json

63 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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