This commit is contained in:
indeferend
2021-05-23 06:26:34 +05:00
commit df825e3d2f
56 changed files with 24076 additions and 0 deletions

6
LE/sys_autoload.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
/* LE Framework autoload core classes */
spl_autoload_register(function ($class_name)
{
if (is_file(CORE_CLSDIR.$class_name.".php")) include CORE_CLSDIR.$class_name.".php";
});