mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
28 lines
683 B
PHP
28 lines
683 B
PHP
<?php
|
|
|
|
// set error reporting high
|
|
error_reporting(E_ALL | E_STRICT);
|
|
|
|
// make sure we see them
|
|
ini_set('display_errors', 'On');
|
|
|
|
// make sure current directory and class directories are on include path
|
|
// this is necessary for auto load to work
|
|
set_include_path(
|
|
// distribution files (where the zip / tgz is unpacked)
|
|
dirname(dirname(__FILE__)) . PATH_SEPARATOR .
|
|
|
|
// test file directory "tests"
|
|
dirname(__FILE__) . PATH_SEPARATOR .
|
|
|
|
// current include path (for PHPUnit, etc.)
|
|
get_include_path()
|
|
);
|
|
|
|
// set up an autoload for Zend / Pear style class loading
|
|
spl_autoload_register(
|
|
function($class)
|
|
{
|
|
include(str_replace("_", DIRECTORY_SEPARATOR, $class) . ".php");
|
|
}
|
|
); |