FileLocator.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpKernel\Config;
  11. use Symfony\Component\Config\FileLocator as BaseFileLocator;
  12. use Symfony\Component\HttpKernel\KernelInterface;
  13. /**
  14. * FileLocator uses the KernelInterface to locate resources in bundles.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. */
  18. class FileLocator extends BaseFileLocator
  19. {
  20. private $kernel;
  21. private $path;
  22. /**
  23. * @param KernelInterface $kernel A KernelInterface instance
  24. * @param string|null $path The path the global resource directory
  25. * @param array $paths An array of paths where to look for resources
  26. */
  27. public function __construct(KernelInterface $kernel, string $path = null, array $paths = [])
  28. {
  29. $this->kernel = $kernel;
  30. if (null !== $path) {
  31. $this->path = $path;
  32. $paths[] = $path;
  33. }
  34. parent::__construct($paths);
  35. }
  36. /**
  37. * {@inheritdoc}
  38. */
  39. public function locate($file, $currentPath = null, $first = true)
  40. {
  41. if (isset($file[0]) && '@' === $file[0]) {
  42. return $this->kernel->locateResource($file, $this->path, $first);
  43. }
  44. return parent::locate($file, $currentPath, $first);
  45. }
  46. }