| 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 |
|