block.json
106 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 1, |
| 4 | "name": "jetpack/simple-payments", |
| 5 | "title": "Pay with PayPal", |
| 6 | "description": "Add credit and debit card payment buttons with minimal setup. Good for collecting donations or payments for products and services.", |
| 7 | "keywords": [ |
| 8 | "buy", |
| 9 | "commerce", |
| 10 | "credit card", |
| 11 | "debit card", |
| 12 | "earn", |
| 13 | "ecommerce", |
| 14 | "money", |
| 15 | "paid", |
| 16 | "payments", |
| 17 | "products", |
| 18 | "purchase", |
| 19 | "sell", |
| 20 | "shop", |
| 21 | "square", |
| 22 | "payments" |
| 23 | ], |
| 24 | "version": "12.5.0", |
| 25 | "textdomain": "jetpack", |
| 26 | "category": "earn", |
| 27 | "icon": "<svg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg'><path fill='none' d='M0 0h24v24H0V0z' /><path d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z' /></svg>", |
| 28 | "supports": { |
| 29 | "className": false, |
| 30 | "customClassName": false, |
| 31 | "html": false, |
| 32 | "reusable": false |
| 33 | }, |
| 34 | "attributes": { |
| 35 | "currency": { |
| 36 | "type": "string", |
| 37 | "default": "USD" |
| 38 | }, |
| 39 | "content": { |
| 40 | "type": "string", |
| 41 | "source": "html", |
| 42 | "selector": ".jetpack-simple-payments-description p", |
| 43 | "default": "" |
| 44 | }, |
| 45 | "email": { |
| 46 | "type": "string", |
| 47 | "default": "" |
| 48 | }, |
| 49 | "featuredMediaId": { |
| 50 | "type": "number", |
| 51 | "default": 0 |
| 52 | }, |
| 53 | "featuredMediaUrl": { |
| 54 | "type": "string", |
| 55 | "source": "attribute", |
| 56 | "selector": ".jetpack-simple-payments-image img", |
| 57 | "attribute": "src", |
| 58 | "default": null |
| 59 | }, |
| 60 | "featuredMediaTitle": { |
| 61 | "type": "string", |
| 62 | "source": "attribute", |
| 63 | "selector": ".jetpack-simple-payments-image img", |
| 64 | "attribute": "alt", |
| 65 | "default": null |
| 66 | }, |
| 67 | "multiple": { |
| 68 | "type": "boolean", |
| 69 | "default": false |
| 70 | }, |
| 71 | "postLinkUrl": { |
| 72 | "type": "string", |
| 73 | "source": "attribute", |
| 74 | "selector": ".jetpack-simple-payments-purchase", |
| 75 | "attribute": "href" |
| 76 | }, |
| 77 | "postLinkText": { |
| 78 | "type": "string", |
| 79 | "source": "html", |
| 80 | "selector": ".jetpack-simple-payments-purchase", |
| 81 | "default": "Click here to purchase." |
| 82 | }, |
| 83 | "price": { |
| 84 | "type": "number" |
| 85 | }, |
| 86 | "productId": { |
| 87 | "type": "number" |
| 88 | }, |
| 89 | "title": { |
| 90 | "type": "string", |
| 91 | "source": "html", |
| 92 | "selector": ".jetpack-simple-payments-title p", |
| 93 | "default": "" |
| 94 | } |
| 95 | }, |
| 96 | "example": { |
| 97 | "attributes": { |
| 98 | "price": 25, |
| 99 | "title": "Jetpack t-shirt", |
| 100 | "content": "Take flight in ultimate comfort with this stylish t-shirt featuring the Jetpack logo.", |
| 101 | "email": "jetpack@jetpack.com", |
| 102 | "featuredMediaUrl": "./simple-payments_example-1.jpg" |
| 103 | } |
| 104 | }, |
| 105 | "editorScript": "jetpack-blocks-editor" |
| 106 | } |