Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bootstrap.php 195B

12345678910
  1. <?php
  2. spl_autoload_register(function($class)
  3. {
  4. $file = __DIR__.'/../lib/'.strtr($class, '\\', '/').'.php';
  5. if (file_exists($file)) {
  6. require $file;
  7. return true;
  8. }
  9. });