forked from checkout/checkout-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.php
75 lines (64 loc) · 1.33 KB
/
checkout.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
/**
* Auto load Checkout SDK
*/
final class Checkout
{
/**
* @var string
*/
const CHK_DIR = "Checkout";
/**
* Hold registration status
*
* @var bool
*/
private static $registered = false;
/**
* Register autoload to
*/
public static function register()
{
if (!static::$registered) {
spl_autoload_register(array(__CLASS__, 'load'), true);
static::$registered = true;
}
}
/**
* Load class
*
* @param string $class
* @return boolean
*/
public static function load($class)
{
$file = static::find($class);
if ($file) {
include_once $file;
}
return (bool) $file;
}
/**
* Find class file
*
* @param string $class
* @return string
*/
public static function find($class)
{
$file = '';
$arr = explode('\\', $class);
if ($arr[0] === static::CHK_DIR) {
$arr[0] = 'src';
$file = __DIR__;
foreach ($arr as &$value) {
$file .= DIRECTORY_SEPARATOR . $value;
}
$file .= '.php';
if (!file_exists($file)) {
$file = '';
}
}
return $file;
}
} Checkout::register();