public function IniFileLoader::load

Loads a resource.

Parameters

mixed $file The resource:

string $type The resource type:

Throws

InvalidArgumentException When ini file is not valid

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Loader/IniFileLoader.php, line 32

Class

IniFileLoader
IniFileLoader loads parameters from INI files.

Namespace

Symfony\Component\DependencyInjection\Loader

Code

public function load($file, $type = null) {
  $path = $this->locator
    ->locate($file);
  $this->container
    ->addResource(new FileResource($path));
  $result = parse_ini_file($path, true);
  if (false === $result || array() === $result) {
    throw new InvalidArgumentException(sprintf('The "%s" file is not valid.', $file));
  }
  if (isset($result['parameters']) && is_array($result['parameters'])) {
    foreach ($result['parameters'] as $key => $value) {
      $this->container
        ->setParameter($key, $value);
    }
  }
}