forked from jpfuentes2/php-activerecord
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathActiveRecord.php
47 lines (41 loc) · 1.49 KB
/
ActiveRecord.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
<?php
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 80000) {
die('PHP ActiveRecord requires PHP 8.0 or higher');
}
define('PHP_ACTIVERECORD_VERSION_ID', '1.0');
if (!defined('PHP_ACTIVERECORD_AUTOLOAD_PREPEND')) {
define('PHP_ACTIVERECORD_AUTOLOAD_PREPEND', true);
}
require __DIR__ . '/lib/Singleton.php';
require __DIR__ . '/lib/Config.php';
require __DIR__ . '/lib/Utils.php';
require __DIR__ . '/lib/DateTimeInterface.php';
require __DIR__ . '/lib/DateTime.php';
require __DIR__ . '/lib/Model.php';
require __DIR__ . '/lib/Table.php';
require __DIR__ . '/lib/ConnectionManager.php';
require __DIR__ . '/lib/Connection.php';
require __DIR__ . '/lib/Serialization.php';
require __DIR__ . '/lib/SQLBuilder.php';
require __DIR__ . '/lib/Reflections.php';
require __DIR__ . '/lib/Inflector.php';
require __DIR__ . '/lib/CallBack.php';
require __DIR__ . '/lib/Exceptions.php';
require __DIR__ . '/lib/Cache.php';
function activerecord_autoload($class_name)
{
$path = ActiveRecord\Config::instance()->get_model_directory();
$root = realpath(isset($path) ? $path : '.');
if (($namespaces = ActiveRecord\get_namespaces($class_name))) {
$class_name = array_pop($namespaces);
$directories = array();
foreach ($namespaces as $directory) {
$directories[] = $directory;
}
$root .= DIRECTORY_SEPARATOR . implode(DIRECTORY_SEPARATOR, $directories);
}
$file = "$root/$class_name.php";
if (file_exists($file)) {
require_once $file;
}
}