12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Config\Loader;
- use Symfony\Component\Config\FileLocatorInterface;
- use Symfony\Component\Config\Exception\FileLoaderImportException;
- /**
- * FileLoader is the abstract class used by all built-in loaders that are file based.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- abstract class FileLoader extends Loader
- {
- protected $locator;
- private $currentDir;
- /**
- * Constructor.
- */
- public function __construct(FileLocatorInterface $locator)
- {
- $this->locator = $locator;
- }
- public function setCurrentDir($dir)
- {
- $this->currentDir = $dir;
- }
- public function getLocator()
- {
- return $this->locator;
- }
- /**
- * Adds definitions and parameters from a resource.
- *
- * @param mixed $resource A Resource
- * @param string $type The resource type
- * @param Boolean $ignoreErrors Whether to ignore import errors or not
- *
- * @return mixed
- */
- public function import($resource, $type = null, $ignoreErrors = false, $sourceResource = null)
- {
- try {
- $loader = $this->resolve($resource, $type);
- if ($loader instanceof FileLoader && null !== $this->currentDir) {
- $resource = $this->locator->locate($resource, $this->currentDir);
- }
- return $loader->load($resource);
- } catch (\Exception $e) {
- if (!$ignoreErrors) {
- // prevent embedded imports from nesting multiple exceptions
- if ($e instanceof FileLoaderImportException) {
- throw $e;
- }
- throw new FileLoaderImportException($resource, $sourceResource, null, $e);
- }
- }
- }
- }
|