| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "wpforo/profile", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "wpForo User Profile & Notifications", |
| 7 |
"category": "widgets", |
| 8 |
"description": "wpForo profile data and notifications", |
| 9 |
"attributes": { |
| 10 |
"title": { |
| 11 |
"type": "string", |
| 12 |
"default": "My Profile" |
| 13 |
}, |
| 14 |
"title_guest": { |
| 15 |
"type": "string", |
| 16 |
"default": "Join Us!" |
| 17 |
}, |
| 18 |
"hide_avatar": { |
| 19 |
"type": "boolean", |
| 20 |
"default": false |
| 21 |
}, |
| 22 |
"hide_name": { |
| 23 |
"type": "boolean", |
| 24 |
"default": false |
| 25 |
}, |
| 26 |
"hide_notification": { |
| 27 |
"type": "boolean", |
| 28 |
"default": false |
| 29 |
}, |
| 30 |
"hide_data": { |
| 31 |
"type": "boolean", |
| 32 |
"default": false |
| 33 |
}, |
| 34 |
"hide_buttons": { |
| 35 |
"type": "boolean", |
| 36 |
"default": false |
| 37 |
}, |
| 38 |
"hide_for_guests": { |
| 39 |
"type": "boolean", |
| 40 |
"default": false |
| 41 |
} |
| 42 |
}, |
| 43 |
"supports": { |
| 44 |
"html": false |
| 45 |
}, |
| 46 |
"textdomain": "wpforo", |
| 47 |
"editorScript": "wpforo-profile-editor-script", |
| 48 |
"editorStyle": "wpforo-profile-editor-style", |
| 49 |
"render": "file:./render.php" |
| 50 |
} |
| 51 |
|