| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/certificate", |
| 5 |
"title": "Certificate", |
| 6 |
"category": "bkbg-business", |
| 7 |
"icon": "awards", |
| 8 |
"description": "Display a digital certificate or diploma with recipient name, issuer, date, credentials, and optional signatures. Ideal for online courses and certifications.", |
| 9 |
"keywords": [ |
| 10 |
"certificate", |
| 11 |
"diploma", |
| 12 |
"award", |
| 13 |
"credential", |
| 14 |
"course", |
| 15 |
"achievement", |
| 16 |
"badge", |
| 17 |
"completion" |
| 18 |
], |
| 19 |
"textdomain": "blockenberg", |
| 20 |
"editorScript": "bkbg-certificate-editor", |
| 21 |
"editorStyle": "bkbg-certificate-style", |
| 22 |
"style": "bkbg-certificate-style", |
| 23 |
"viewScript": "bkbg-certificate-frontend", |
| 24 |
"supports": { |
| 25 |
"html": false, |
| 26 |
"anchor": true, |
| 27 |
"className": true, |
| 28 |
"align": [ |
| 29 |
"wide" |
| 30 |
] |
| 31 |
}, |
| 32 |
"attributes": { |
| 33 |
"style": { |
| 34 |
"type": "string", |
| 35 |
"default": "classic" |
| 36 |
}, |
| 37 |
"badgeEmoji": { |
| 38 |
"type": "string", |
| 39 |
"default": "🏆" |
| 40 |
}, |
| 41 |
"showBadge": { |
| 42 |
"type": "boolean", |
| 43 |
"default": true |
| 44 |
}, |
| 45 |
"preTitle": { |
| 46 |
"type": "string", |
| 47 |
"default": "Certificate of Completion" |
| 48 |
}, |
| 49 |
"awardedTo": { |
| 50 |
"type": "string", |
| 51 |
"default": "This certifies that" |
| 52 |
}, |
| 53 |
"recipientName": { |
| 54 |
"type": "string", |
| 55 |
"default": "Jane Doe" |
| 56 |
}, |
| 57 |
"courseTitle": { |
| 58 |
"type": "string", |
| 59 |
"default": "Advanced Web Development" |
| 60 |
}, |
| 61 |
"courseDesc": { |
| 62 |
"type": "string", |
| 63 |
"default": "has successfully completed the full course curriculum and demonstrated proficiency in all required competencies." |
| 64 |
}, |
| 65 |
"issuerName": { |
| 66 |
"type": "string", |
| 67 |
"default": "Blockenberg Academy" |
| 68 |
}, |
| 69 |
"issuerLogoUrl": { |
| 70 |
"type": "string", |
| 71 |
"default": "" |
| 72 |
}, |
| 73 |
"issuerLogoId": { |
| 74 |
"type": "number", |
| 75 |
"default": 0 |
| 76 |
}, |
| 77 |
"completionDate": { |
| 78 |
"type": "string", |
| 79 |
"default": "February 24, 2026" |
| 80 |
}, |
| 81 |
"credentialId": { |
| 82 |
"type": "string", |
| 83 |
"default": "CERT-2026-0001" |
| 84 |
}, |
| 85 |
"showCredentialId": { |
| 86 |
"type": "boolean", |
| 87 |
"default": true |
| 88 |
}, |
| 89 |
"showDate": { |
| 90 |
"type": "boolean", |
| 91 |
"default": true |
| 92 |
}, |
| 93 |
"showSignature1": { |
| 94 |
"type": "boolean", |
| 95 |
"default": true |
| 96 |
}, |
| 97 |
"signature1Name": { |
| 98 |
"type": "string", |
| 99 |
"default": "Alex Johnson" |
| 100 |
}, |
| 101 |
"signature1Title": { |
| 102 |
"type": "string", |
| 103 |
"default": "Course Director" |
| 104 |
}, |
| 105 |
"showSignature2": { |
| 106 |
"type": "boolean", |
| 107 |
"default": false |
| 108 |
}, |
| 109 |
"signature2Name": { |
| 110 |
"type": "string", |
| 111 |
"default": "Maria Santos" |
| 112 |
}, |
| 113 |
"signature2Title": { |
| 114 |
"type": "string", |
| 115 |
"default": "Academic Dean" |
| 116 |
}, |
| 117 |
"fontFamily": { |
| 118 |
"type": "string", |
| 119 |
"default": "serif" |
| 120 |
}, |
| 121 |
"maxWidth": { |
| 122 |
"type": "number", |
| 123 |
"default": 800 |
| 124 |
}, |
| 125 |
"bgColor": { |
| 126 |
"type": "string", |
| 127 |
"default": "#fffef7" |
| 128 |
}, |
| 129 |
"borderColor": { |
| 130 |
"type": "string", |
| 131 |
"default": "#c9a84c" |
| 132 |
}, |
| 133 |
"accentColor": { |
| 134 |
"type": "string", |
| 135 |
"default": "#8b6914" |
| 136 |
}, |
| 137 |
"preTitleColor": { |
| 138 |
"type": "string", |
| 139 |
"default": "#8b6914" |
| 140 |
}, |
| 141 |
"recipientColor": { |
| 142 |
"type": "string", |
| 143 |
"default": "#1e293b" |
| 144 |
}, |
| 145 |
"courseTitleColor": { |
| 146 |
"type": "string", |
| 147 |
"default": "#1a3a6b" |
| 148 |
}, |
| 149 |
"descColor": { |
| 150 |
"type": "string", |
| 151 |
"default": "#475569" |
| 152 |
}, |
| 153 |
"issuerColor": { |
| 154 |
"type": "string", |
| 155 |
"default": "#1e293b" |
| 156 |
}, |
| 157 |
"metaColor": { |
| 158 |
"type": "string", |
| 159 |
"default": "#64748b" |
| 160 |
}, |
| 161 |
"borderWidth": { |
| 162 |
"type": "number", |
| 163 |
"default": 6 |
| 164 |
}, |
| 165 |
"borderRadius": { |
| 166 |
"type": "number", |
| 167 |
"default": 4 |
| 168 |
}, |
| 169 |
"innerBorder": { |
| 170 |
"type": "boolean", |
| 171 |
"default": true |
| 172 |
}, |
| 173 |
"shadowSize": { |
| 174 |
"type": "number", |
| 175 |
"default": 2 |
| 176 |
}, |
| 177 |
"recipientFontSize": { |
| 178 |
"type": "number", |
| 179 |
"default": 36 |
| 180 |
}, |
| 181 |
"recipientFontWeight": { |
| 182 |
"type": "string", |
| 183 |
"default": "700" |
| 184 |
}, |
| 185 |
"recipientLineHeight": { |
| 186 |
"type": "number", |
| 187 |
"default": 1.2 |
| 188 |
}, |
| 189 |
"courseTitleFontSize": { |
| 190 |
"type": "number", |
| 191 |
"default": 22 |
| 192 |
}, |
| 193 |
"bodyFontSize": { |
| 194 |
"type": "number", |
| 195 |
"default": 16 |
| 196 |
}, |
| 197 |
"bodyLineHeight": { |
| 198 |
"type": "number", |
| 199 |
"default": 1.7 |
| 200 |
}, |
| 201 |
"typoRecipient": { |
| 202 |
"type": "object", |
| 203 |
"default": {} |
| 204 |
}, |
| 205 |
"typoCourseTitle": { |
| 206 |
"type": "object", |
| 207 |
"default": {} |
| 208 |
}, |
| 209 |
"typoBody": { |
| 210 |
"type": "object", |
| 211 |
"default": {} |
| 212 |
} |
| 213 |
} |
| 214 |
} |
| 215 |
|