# gutenberg/22.9.0/build/build.php

Gutenberg, version 22.9.0. 38 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/22.9.0/code/build/build.php
- Raw: https://pluginprobe.com/plugins/gutenberg/22.9.0/raw/build/build.php
- Modified: 2026-01-20T14:42:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/22.9.0/code/build/build.php#L10-L20`.

```php
<?php
/**
 * Main entry point for auto-generated asset registration.
 * Do not edit this file manually.
 *
 * @package gutenberg
 */

// Load script module registration.
$modules_file = __DIR__ . '/modules.php';
if ( file_exists( $modules_file ) ) {
	require_once $modules_file;
}

// Load script registration.
$scripts_file = __DIR__ . '/scripts.php';
if ( file_exists( $scripts_file ) ) {
	require_once $scripts_file;
}

// Load style registration.
$styles_file = __DIR__ . '/styles.php';
if ( file_exists( $styles_file ) ) {
	require_once $styles_file;
}

// Load routes registration.
$routes_file = __DIR__ . '/routes.php';
if ( file_exists( $routes_file ) ) {
	require_once $routes_file;
}

// Load pages registration.
$pages_file = __DIR__ . '/pages.php';
if ( file_exists( $pages_file ) ) {
	require_once $pages_file;
}

```
