PluginProbe
Gutenberg / 23.3.1
Gutenberg v23.3.1
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 / build.php

build.php in Gutenberg 23.3.1, at build/build.php

44 lines 969 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Main entry point for auto-generated asset registration.
4 * Do not edit this file manually.
5 *
6 * @package gutenberg
7 */
8
9 // Load script module registration.
10 $modules_file = __DIR__ . '/modules.php';
11 if ( file_exists( $modules_file ) ) {
12 require_once $modules_file;
13 }
14
15 // Load script registration.
16 $scripts_file = __DIR__ . '/scripts.php';
17 if ( file_exists( $scripts_file ) ) {
18 require_once $scripts_file;
19 }
20
21 // Load style registration.
22 $styles_file = __DIR__ . '/styles.php';
23 if ( file_exists( $styles_file ) ) {
24 require_once $styles_file;
25 }
26
27 // Load routes registration.
28 $routes_file = __DIR__ . '/routes.php';
29 if ( file_exists( $routes_file ) ) {
30 require_once $routes_file;
31 }
32
33 // Load widgets registration.
34 $widgets_file = __DIR__ . '/widgets.php';
35 if ( file_exists( $widgets_file ) ) {
36 require_once $widgets_file;
37 }
38
39 // Load pages registration.
40 $pages_file = __DIR__ . '/pages.php';
41 if ( file_exists( $pages_file ) ) {
42 require_once $pages_file;
43 }
44