# customify/1.7.4/core/bootstrap.php

Customify, version 1.7.4. 23 lines.

- Page: https://pluginprobe.com/plugins/customify/1.7.4/code/core/bootstrap.php
- Raw: https://pluginprobe.com/plugins/customify/1.7.4/raw/core/bootstrap.php
- Modified: 2015-02-16T08:16:34+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/1.7.4/code/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);

```
