staticloader.php 327 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Including all needed APIs and Libs
  4. */
  5. require_once('api/libs/api.compat.php');
  6. require_once('api/libs/api.yalfcore.php');
  7. $system = new YALFCore();
  8. $yalfLibs = $system->getLibs();
  9. if (!empty($yalfLibs)) {
  10. foreach ($yalfLibs as $eachLibPath => $eachYalfLayer) {
  11. require_once($eachLibPath);
  12. }
  13. }