package.php 749 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php namespace System;
  2. class Package {
  3. /**
  4. * All of the loaded packages.
  5. *
  6. * @var array
  7. */
  8. public static $loaded = array();
  9. /**
  10. * Load a package or set of packages.
  11. *
  12. * @param string|array $packages
  13. * @return void
  14. */
  15. public static function load($packages)
  16. {
  17. foreach ((array) $packages as $package)
  18. {
  19. // Packages may have a bootstrap file, which commonly is used to register auto-loaders
  20. // and perform other initialization needed to use the package. If the package has a
  21. // bootstrapper, we will require it here.
  22. if ( ! array_key_exists($package, static::$loaded) and file_exists($path = PACKAGE_PATH.$package.'/bootstrap'.EXT))
  23. {
  24. require $path;
  25. }
  26. static::$loaded[] = $package;
  27. }
  28. }
  29. }