PluginProbe ʕ •ᴥ•ʔ
Gallery : FooGallery / 3.3.0
Gallery : FooGallery v3.3.0
3.3.0 3.1.31 3.1.32 3.1.34 3.1.36 3.2.0 3.2.6 trunk 1.10.3 2.0.24 2.1.34 2.2.44 2.3.3 2.4.32 3.0.6 3.1.11 3.1.12 3.1.13 3.1.20 3.1.25 3.1.26 3.1.26.1 3.1.26.2
foogallery / gutenberg / block.json
foogallery / gutenberg Last commit date
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