forked from WordPress/gutenberg-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
32 lines (29 loc) · 1.83 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* Plugin Name: Gutenberg Examples
* Plugin URI: https://github.com/WordPress/gutenberg-examples
* Description: This is a plugin demonstrating how to register new blocks for the Gutenberg editor.
* Version: 1.1.0
* Author: the Gutenberg Team
*
* @package gutenberg-examples
*/
defined( 'ABSPATH' ) || exit;
require plugin_dir_path( __FILE__ ) . 'blocks-non-jsx/01-basic/index.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/01-basic-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'blocks-non-jsx/02-stylesheets/index.php';
require plugin_dir_path( __FILE__ ) . 'blocks-non-jsx/03-editable/index.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/03-editable-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'blocks-non-jsx/04-controls/index.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/04-controls-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'blocks-non-jsx/05-recipe-card/index.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/05-recipe-card-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'blocks-non-jsx/06-inner-blocks/index.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/06-inner-blocks-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'build/non-block-examples/07-slotfills-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/08-block-supports-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'build/non-block-examples/09-code-data-basics-esnext/index.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/10-dynamic-block/index.php';
require plugin_dir_path( __FILE__ ) . 'build/non-block-examples/format-api/index.php';
require plugin_dir_path( __FILE__ ) . 'blocks-non-jsx/plugin-sidebar/plugin-sidebar.php';
require plugin_dir_path( __FILE__ ) . 'build/blocks-jsx/meta-block/index.php';