2015-10-23 12:01:27 +00:00
|
|
|
<?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);
|
2015-12-30 09:06:45 +00:00
|
|
|
$container->setParameter('wallabag_import.allow_mimetypes', $config['allow_mimetypes']);
|
2015-12-30 12:26:30 +00:00
|
|
|
$container->setParameter('wallabag_import.resource_dir', $config['resource_dir']);
|
2015-10-23 12:01:27 +00:00
|
|
|
|
|
|
|
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
|
|
|
$loader->load('services.yml');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAlias()
|
|
|
|
{
|
|
|
|
return 'wallabag_import';
|
|
|
|
}
|
|
|
|
}
|