43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Bluesquare\StorageBundle\DependencyInjection;
|
|
|
|
use Symfony\Component\Config\FileLocator;
|
|
use Symfony\Component\DependencyInjection\Container;
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
use Symfony\Component\DependencyInjection\Definition;
|
|
use Symfony\Component\DependencyInjection\Extension\Extension;
|
|
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
|
|
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
|
|
|
|
class StorageExtension extends Extension
|
|
{
|
|
|
|
/**
|
|
* Loads a specific configuration.
|
|
*
|
|
* @throws \InvalidArgumentException When provided tag is not defined in this extension
|
|
*/
|
|
public function load(array $configs, ContainerBuilder $container)
|
|
{
|
|
$loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Ressources/config'));
|
|
$loader->load('services.yaml');
|
|
|
|
$configuration = $this->getConfiguration($configs, $container);
|
|
|
|
$config = $this->processConfiguration($configuration, $configs);
|
|
|
|
$definition = $container->getDefinition('bluesquare.storage');
|
|
$definition->setArgument(0, $config);
|
|
|
|
return $config;
|
|
}
|
|
|
|
|
|
public function getAlias()
|
|
{
|
|
// return ('bluesquare\\storage');
|
|
return parent::getAlias(); // TODO: Change the autogenerated stub
|
|
}
|
|
}
|