PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / scripts / widgets / blocks / blocks-manifest.php

blocks-manifest.php in Gutenberg 22.9.0, at build/scripts/widgets/blocks/blocks-manifest.php

54 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // This file is generated. Do not modify it manually.
3 return array(
4 'legacy-widget' => array(
5 '$schema' => 'https://schemas.wp.org/trunk/block.json',
6 'apiVersion' => 3,
7 'name' => 'core/legacy-widget',
8 'title' => 'Legacy Widget',
9 'category' => 'widgets',
10 'description' => 'Display a legacy widget.',
11 'textdomain' => 'default',
12 'attributes' => array(
13 'id' => array(
14 'type' => 'string',
15 'default' => null
16 ),
17 'idBase' => array(
18 'type' => 'string',
19 'default' => null
20 ),
21 'instance' => array(
22 'type' => 'object',
23 'default' => null
24 )
25 ),
26 'supports' => array(
27 'html' => false,
28 'customClassName' => false,
29 'reusable' => false
30 ),
31 'editorStyle' => 'wp-block-legacy-widget-editor'
32 ),
33 'widget-group' => array(
34 '$schema' => 'https://schemas.wp.org/trunk/block.json',
35 'apiVersion' => 3,
36 'name' => 'core/widget-group',
37 'title' => 'Widget Group',
38 'category' => 'widgets',
39 'attributes' => array(
40 'title' => array(
41 'type' => 'string'
42 )
43 ),
44 'supports' => array(
45 'html' => false,
46 'inserter' => true,
47 'customClassName' => true,
48 'reusable' => false
49 ),
50 'editorStyle' => 'wp-block-widget-group-editor',
51 'style' => 'wp-block-widget-group'
52 )
53 );
54