| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "bbp-core/forum-tab", |
| 5 |
"version": "0.1.0", |
| 6 |
"title": "Forumax Forum & Topics Tabs", |
| 7 |
"category": "bbp-core", |
| 8 |
"icon": "index-card", |
| 9 |
"description": "Displays forums and topics in tabs.", |
| 10 |
"attributes": { |
| 11 |
"forum_tab_title": { |
| 12 |
"type": "string", |
| 13 |
"default": "Show Forums" |
| 14 |
}, |
| 15 |
"ppp": { |
| 16 |
"type": "number", |
| 17 |
"default": 9 |
| 18 |
}, |
| 19 |
"order": { |
| 20 |
"type": "string", |
| 21 |
"default": "ASC" |
| 22 |
}, |
| 23 |
"is_forum_tab_btn": { |
| 24 |
"type": "boolean", |
| 25 |
"default": true |
| 26 |
}, |
| 27 |
"more_txt": { |
| 28 |
"type": "string", |
| 29 |
"default": "View More" |
| 30 |
}, |
| 31 |
"more_url": { |
| 32 |
"type": "string", |
| 33 |
"default": "" |
| 34 |
}, |
| 35 |
"topics_tab_title": { |
| 36 |
"type": "string", |
| 37 |
"default": "Show Topics" |
| 38 |
}, |
| 39 |
"ppp2": { |
| 40 |
"type": "number", |
| 41 |
"default": 6 |
| 42 |
}, |
| 43 |
"order2": { |
| 44 |
"type": "string", |
| 45 |
"default": "ASC" |
| 46 |
}, |
| 47 |
"is_topic_tab_btn": { |
| 48 |
"type": "boolean", |
| 49 |
"default": true |
| 50 |
}, |
| 51 |
"more_txt2": { |
| 52 |
"type": "string", |
| 53 |
"default": "View More" |
| 54 |
}, |
| 55 |
"more_url2": { |
| 56 |
"type": "string", |
| 57 |
"default": "" |
| 58 |
}, |
| 59 |
"forum_tab_title_color": { |
| 60 |
"type": "string" |
| 61 |
}, |
| 62 |
"topics_tab_title_color": { |
| 63 |
"type": "string" |
| 64 |
}, |
| 65 |
"forum_tab_content_color": { |
| 66 |
"type": "string" |
| 67 |
}, |
| 68 |
"topics_tab_content_color": { |
| 69 |
"type": "string" |
| 70 |
} |
| 71 |
}, |
| 72 |
"supports": { |
| 73 |
"html": false, |
| 74 |
"typography": { |
| 75 |
"fontSize": true |
| 76 |
}, |
| 77 |
"color": { |
| 78 |
"text": true, |
| 79 |
"background": true, |
| 80 |
"gradients": false |
| 81 |
} |
| 82 |
}, |
| 83 |
"textdomain": "bbp-core", |
| 84 |
"editorScript": "file:./index.js", |
| 85 |
"editorStyle": "file:./index.css", |
| 86 |
"style": "file:./style-index.css" |
| 87 |
} |
| 88 |
|