mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-07 07:25:25 +00:00
26 lines
755 B
PHP
26 lines
755 B
PHP
|
<?php
|
||
|
|
||
|
namespace Wallabag\ImportBundle\DependencyInjection;
|
||
|
|
||
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||
|
use Symfony\Component\Config\FileLocator;
|
||
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
||
|
use Symfony\Component\DependencyInjection\Loader;
|
||
|
|
||
|
class WallabagImportExtension 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');
|
||
|
}
|
||
|
|
||
|
public function getAlias()
|
||
|
{
|
||
|
return 'wallabag_import';
|
||
|
}
|
||
|
}
|