assets
1 week ago
block.json
1 week ago
class-foogallery-blocks.php
1 week ago
class-foogallery-gutenberg.php
1 week ago
class-foogallery-rest-routes.php
1 week ago
block.json
48 lines
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "name": "fooplugins/foogallery", |
| 5 | "title": "FooGallery", |
| 6 | "description": "Insert a FooGallery into your content", |
| 7 | "category": "media", |
| 8 | "icon": "format-gallery", |
| 9 | "keywords": [ |
| 10 | "foogallery", |
| 11 | "gallery" |
| 12 | ], |
| 13 | "textdomain": "foogallery", |
| 14 | "attributes": { |
| 15 | "id": { |
| 16 | "type": "number", |
| 17 | "default": 0 |
| 18 | }, |
| 19 | "attachment_ids": { |
| 20 | "type": "array", |
| 21 | "default": [] |
| 22 | }, |
| 23 | "template": { |
| 24 | "type": "string", |
| 25 | "default": "" |
| 26 | }, |
| 27 | "lightbox": { |
| 28 | "type": "string", |
| 29 | "default": "" |
| 30 | }, |
| 31 | "paging_type": { |
| 32 | "type": "string", |
| 33 | "default": "" |
| 34 | }, |
| 35 | "filtering_type": { |
| 36 | "type": "string", |
| 37 | "default": "" |
| 38 | }, |
| 39 | "className": { |
| 40 | "type": "string" |
| 41 | } |
| 42 | }, |
| 43 | "supports": { |
| 44 | "multiple": true, |
| 45 | "html": false |
| 46 | } |
| 47 | } |
| 48 |