asset.php 710 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php namespace System;
  2. class Asset {
  3. /**
  4. * All of the asset containers.
  5. *
  6. * @var array
  7. */
  8. public static $containers = array();
  9. /**
  10. * Get an asset container instance.
  11. *
  12. * @param string $container
  13. * @return Container
  14. */
  15. public static function container($container = 'default')
  16. {
  17. if ( ! isset(static::$containers[$container]))
  18. {
  19. static::$containers[$container] = new Asset\Container($container);
  20. }
  21. return static::$containers[$container];
  22. }
  23. /**
  24. * Magic Method for calling methods on the default Asset container.
  25. */
  26. public static function __callStatic($method, $parameters)
  27. {
  28. return call_user_func_array(array(static::container(), $method), $parameters);
  29. }
  30. }