ConstantTime
1 year ago
.htaccess
1 year ago
autoload.php
1 year ago
index.html
1 year ago
web.config
1 year ago
autoload.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | spl_autoload_register(function($className) { |
| 4 | |
| 5 | $parts = explode('\\', $className); |
| 6 | if(!isset($parts[0]) || $parts[0] != 'ParagonIE') return; |
| 7 | array_shift($parts); |
| 8 | |
| 9 | $path = dirname(__FILE__) . "/" .implode('/' , $parts) . ".php"; |
| 10 | |
| 11 | // echo "\nPATH: $path\n"; |
| 12 | if(file_exists($path)) require_once $path; |
| 13 | |
| 14 | }); |
| 15 |