# customify/1.6.0/core/tests/bootstrap.php

Customify, version 1.6.0. 12 lines.

- Page: https://pluginprobe.com/plugins/customify/1.6.0/code/core/tests/bootstrap.php
- Raw: https://pluginprobe.com/plugins/customify/1.6.0/raw/core/tests/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.6.0/code/core/tests/bootstrap.php#L10-L20`.

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

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

	error_reporting(-1);

	$basepath = realpath('..').DIRECTORY_SEPARATOR;
	require $basepath.'bootstrap'.EXT;

```
