forked from DataTables/Editor-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bootstrap.php
54 lines (42 loc) · 1.06 KB
/
Bootstrap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* DataTables PHP libraries.
*
* PHP libraries for DataTables and DataTables Editor, utilising PHP 5.3+.
*
* @author SpryMedia
* @copyright 2012 SpryMedia ( http://sprymedia.co.uk )
* @license http://editor.datatables.net/license DataTables Editor
* @link http://editor.datatables.net
*/
namespace DataTables;
if (!defined('DATATABLES')) exit();
//
// Configuration
// Load the database connection configuration options
//
if ( ! isset( $sql_details ) ) {
include( dirname(__FILE__).'/config.php' );
}
//
// Auto-loader
// Automatically loads DataTables classes - they are psr-4 compliant
//
spl_autoload_register( function ($class) {
$a = explode("\\", $class);
// Are we working in the DataTables namespace
if ( $a[0] !== "DataTables" ) {
return;
}
array_shift( $a );
$className = array_pop( $a );
$path = count( $a ) ?
implode('/', $a).'/' :
'';
require( dirname(__FILE__).'/'.$path.$className.'.php' );
} );
//
// Database connection
// Database connection is globally available
//
$db = new Database( $sql_details );