# gutenify/trunk/core/inc/bootstrap.php

Gutenify – Visual Site Builder Blocks &amp; Starter Templates, version trunk. 128 lines.

- Page: https://pluginprobe.com/plugins/gutenify/trunk/code/core/inc/bootstrap.php
- Raw: https://pluginprobe.com/plugins/gutenify/trunk/raw/core/inc/bootstrap.php
- Modified: 2026-09-02T07:27:16+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/gutenify/trunk/code/core/inc/bootstrap.php#L10-L20`.

```php
<?php
/**
 * Bootstrap file to initialize and load all required dependencies and core functionality.
 *
 * This file serves as the entry point to include necessary files and set up the environment for the LIGER Lite plugin/theme.
 *
 * @package gutenify
 */

/**
 * Prevent direct access to the file.
 *
 * Ensures this file is being loaded within the WordPress environment.
 */
defined( 'ABSPATH' ) || exit;

/**
 * Load the Helpers class file containing utility methods.
 */
require_once __DIR__ . '/helpers/class-helpers.php';

/**
 * List of PHP files to be required for initializing core functionality.
 *
 * @var string[] Array of relative file paths.
 */
$required_files = array(

	// Core helpers and utilities.
	'inc/helpers/helpers.php',
	'inc/helpers/class-style-helpers.php',
	'inc/helpers/class-dynamic-styles.php',
	'inc/helpers/class-typography-helpers.php',
	'inc/depricated/styles.php', // [TODO: Depricated].
	'inc/class-assets.php',
	'inc/helpers/class-post-list.php',
	'inc/depricated/helpers/typography-helpers.php', // [TODO: Depricated].

	// WooCommerce support.
	'inc/helpers/woocommerce-template-functions.php',

	// Gutenberg block handling.
	'inc/blocks/class-blocks-categories.php',
	'inc/blocks/class-block-inline-styles.php',
	'inc/blocks/class-block-assets.php',
	'inc/blocks/class-block-editor-assets.php',
	'inc/blocks/class-extend-attributes.php',
	'inc/blocks/class-fix-third-party-block-issues.php',
	'inc/blocks/class-dynamic-block-classname.php',
	'inc/blocks/class-slider-blocks.php',
	'inc/blocks/class-editor-control.php',

	// Template and site structure management.
	'inc/frontend/class-global-code.php',

	// REST API endpoints.
	'inc/rest-api/class-rest.php',
	'inc/rest-api/class-rest-demo-importer-v2.php',

	// Demo importing tools.
	// 'inc/depricated/demo-importer.php', // [TODO: Depricated].

	// Admin interface and backend logic.
	'inc/admin/class-menu.php',
	'inc/admin/class-demo-importer-v2.php',
	'inc/admin/class-register-templates-post-type.php',

	// Interface definitions and wrappers.
	'inc/depricated/interfaces/class-main-class-wrapper.php', // [TODO: depricated]

	// React-based non-block components and admin pages.
	'dist/non-blocks/components/index.php',


	// Block editor extensions.
	'dist/non-blocks/extend/toolbar-templates-button/index.php',
	'dist/non-blocks/extend/custom-list/index.php',
	'dist/non-blocks/extend/block-custom-css/index.php',
	'dist/non-blocks/extend/sliders/index.php',
	'dist/non-blocks/extend/aos/index.php',

	// Admin page interfaces.
	'dist/non-blocks/admin/pages/getting-started/index.php',
	'dist/non-blocks/admin/pages/settings/index.php',
	'dist/non-blocks/admin/rating-notice/index.php',

	// Optionally excluded files for future use.
	/**
	 * 'dist/non-blocks/extend/save-template/index.php',
	 * 'dist/non-blocks/extend/responsive-display-control/index.php',
	 * 'dist/non-blocks/extend/masonry/index.php',
	 */
);

// Import the Helpers class to simplify references.
use gutenify\Helpers;

// Get the base directory path where block files are located.
$base_dir = GUTENIFY_BASE_DIR . 'core/';

// Loop through the list of required file paths.
foreach ( $required_files as $file ) {
	// Build the full path to the file by prepending the base directory.
	$full_path = wp_normalize_path( $base_dir . $file );

	// Check if the file exists and is a regular file before including it.
	if ( is_file( $full_path ) ) {
		// Include the file only once to prevent redeclaration errors.
		require_once $full_path;
	}
}

// Retrieve the list of active blocks that need to be loaded.
$active_blocks = Helpers::active_blocks();

if ( ! empty( $active_blocks ) ) {
	// Loop through each active block and include its index.php file if it exists.
	foreach ( $active_blocks as $block ) {
		// Build the full path to the block's index.php file.
		$file = wp_normalize_path( "{$base_dir}dist/blocks/{$block}/index.php" );

		// Include the file only if it exists and is a regular file.
		if ( is_file( $file ) ) {
			require_once $file;
		}
	}
}

```
