# customify/2.5.6/includes/admin-settings/core/bootstrap.php

Customify, version 2.5.6. 23 lines.

- Page: https://pluginprobe.com/plugins/customify/2.5.6/code/includes/admin-settings/core/bootstrap.php
- Raw: https://pluginprobe.com/plugins/customify/2.5.6/raw/includes/admin-settings/core/bootstrap.php
- Modified: 2019-07-01T10:04:38+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/customify/2.5.6/code/includes/admin-settings/core/bootstrap.php#L10-L20`.

```php
<?php defined( 'ABSPATH' ) or die;

// ensure EXT is defined
if ( ! defined( 'EXT' ) ) {
	define( 'EXT', '.php' );
}

$basepath = dirname( __FILE__ ) . DIRECTORY_SEPARATOR;
require $basepath . 'core' . EXT;

// load classes

$interfacepath = $basepath . 'interfaces' . DIRECTORY_SEPARATOR;
pixcustomify::require_all( $interfacepath );

$classpath = $basepath . 'classes' . DIRECTORY_SEPARATOR;
pixcustomify::require_all( $classpath );

// load callbacks

$callbackpath = $basepath . 'callbacks' . DIRECTORY_SEPARATOR;
pixcustomify::require_all( $callbackpath );

```
