aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/UserBundle/DependencyInjection/WallabagUserExtension.php
blob: 5ca3482e6240a5c4abffdc7e9ee6666a51c92944 (plain) (tree)
1
2
3
4
5
6
7
8



                                                  
                                         
                                                           
                                                 
                                                               







                                                                        
                                                                                                           
                                      
                                                                                                        






                               
<?php

namespace Wallabag\UserBundle\DependencyInjection;

use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

class WallabagUserExtension extends Extension
{
    public function load(array $configs, ContainerBuilder $container)
    {
        $configuration = new Configuration();
        $config = $this->processConfiguration($configuration, $configs);

        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
        $loader->load('services.yml');
        $container->setParameter('wallabag_user.registration_enabled', $config['registration_enabled']);
    }

    public function getAlias()
    {
        return 'wallabag_user';
    }
}