First build

This commit is contained in:
2019-06-15 09:30:46 -04:00
parent 39c298dce5
commit 024a75dd35
99 changed files with 9208 additions and 0 deletions
+11
View File
@@ -1,6 +1,17 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
//JUBABOX
//function __autoload($classname) {
function my_autoload($classname) {
if (strpos($classname, 'CL_') !== 0) {
$file = APPPATH . 'libraries/' . $classname . '.php';
if (file_exists($file) && is_file($file)) {
@include_once($file);
}
}
}
spl_autoload_register('my_autoload');
/*
|--------------------------------------------------------------------------
| Base Site URL