mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-18 05:36:30 +00:00
27 lines
943 B
PHP
27 lines
943 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);
|
|
$container->setParameter('wallabag_import.allow_mimetypes', $config['allow_mimetypes']);
|
|
$container->setParameter('wallabag_import.resource_dir', $config['resource_dir']);
|
|
|
|
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
|
$loader->load('services.yml');
|
|
}
|
|
|
|
public function getAlias()
|
|
{
|
|
return 'wallabag_import';
|
|
}
|
|
}
|