| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "contact-forms/form-selector", |
| 5 |
"title": "Contact Form", |
| 6 |
"category": "widgets", |
| 7 |
"icon": "email-alt", |
| 8 |
"description": "Display a contact form created with Contact Forms by Cimatti.", |
| 9 |
"keywords": [ "form", "contact", "email", "cimatti" ], |
| 10 |
"textdomain": "contact-forms", |
| 11 |
"attributes": { |
| 12 |
"formId": { |
| 13 |
"type": "integer", |
| 14 |
"default": 0 |
| 15 |
} |
| 16 |
}, |
| 17 |
"supports": { |
| 18 |
"html": false, |
| 19 |
"multiple": true |
| 20 |
}, |
| 21 |
"editorScript": "contact-forms-block-editor", |
| 22 |
"render": "file:./render.php" |
| 23 |
} |
| 24 |
|