block.json
3 years ago
view.asset.php
3 years ago
view.css
4 years ago
view.js
3 years ago
view.rtl.css
4 years ago
block.json
88 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "jetpack/premium-content", |
| 5 | "title": "Paid Content", |
| 6 | "description": "Restrict access to your content for paying subscribers.", |
| 7 | "keywords": [ |
| 8 | "buy", |
| 9 | "credit card", |
| 10 | "debit card", |
| 11 | "earn", |
| 12 | "exclusive", |
| 13 | "gated", |
| 14 | "gofundme", |
| 15 | "memberships", |
| 16 | "money", |
| 17 | "newsletter", |
| 18 | "paid", |
| 19 | "patreon", |
| 20 | "pay", |
| 21 | "payments", |
| 22 | "paywall", |
| 23 | "premium content", |
| 24 | "purchase", |
| 25 | "recurring", |
| 26 | "repeat", |
| 27 | "signin", |
| 28 | "stripe", |
| 29 | "subscribe", |
| 30 | "subscriptions", |
| 31 | "support", |
| 32 | "sponsor", |
| 33 | "square", |
| 34 | "toast", |
| 35 | "venmo", |
| 36 | "stripe", |
| 37 | "substack" |
| 38 | ], |
| 39 | "version": "12.5.0", |
| 40 | "textdomain": "jetpack", |
| 41 | "category": "grow", |
| 42 | "icon": "<svg viewBox='0 0 25 24' width='25' height='24' xmlns='http://www.w3.org/2000/svg'><path d='M12.7439 14.4271L8.64053 13.165L8.51431 13.8718L8.09208 20.7415C8.06165 21.2365 8.61087 21.5526 9.02363 21.2776L12.7439 18.799L16.7475 21.304C17.1687 21.5676 17.7094 21.2343 17.6631 20.7396L17.0212 13.8718L17.0212 13.165L12.7439 14.4271Z' /><circle cx='12.7439' cy='8.69796' r='5.94466' stroke='currentColor' strokeWidth='1.5' fill='none' /><path d='M9.71023 8.12461L11.9543 10.3687L15.7776 6.54533' stroke='currentColor' strokeWidth='1.5' fill='none'/></svg>", |
| 43 | "supports": { |
| 44 | "html": false |
| 45 | }, |
| 46 | "providesContext": { |
| 47 | "premium-content/planId": "selectedPlanId", |
| 48 | "premium-content/isPreview": "isPreview", |
| 49 | "isPremiumContentChild": "isPremiumContentChild" |
| 50 | }, |
| 51 | "attributes": { |
| 52 | "newPlanName": { |
| 53 | "type": "string", |
| 54 | "default": "Monthly Subscription" |
| 55 | }, |
| 56 | "newPlanCurrency": { |
| 57 | "type": "string", |
| 58 | "default": "USD" |
| 59 | }, |
| 60 | "newPlanPrice": { |
| 61 | "type": "number", |
| 62 | "default": 5 |
| 63 | }, |
| 64 | "newPlanInterval": { |
| 65 | "type": "string", |
| 66 | "default": "1 month" |
| 67 | }, |
| 68 | "selectedPlanId": { |
| 69 | "type": "number", |
| 70 | "default": 0 |
| 71 | }, |
| 72 | "isPreview": { |
| 73 | "type": "boolean", |
| 74 | "default": false |
| 75 | }, |
| 76 | "isPremiumContentChild": { |
| 77 | "type": "boolean", |
| 78 | "default": true |
| 79 | } |
| 80 | }, |
| 81 | "example": { |
| 82 | "attributes": { |
| 83 | "isPreview": true |
| 84 | } |
| 85 | }, |
| 86 | "editorScript": "file:../editor.js" |
| 87 | } |
| 88 |