2011-08-25 22:50:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Gregwar\CaptchaBundle\DependencyInjection;
|
|
|
|
|
|
|
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
use Symfony\Component\DependencyInjection\Definition;
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
|
|
|
|
use Symfony\Component\Config\FileLocator;
|
|
|
|
|
|
|
|
class GregwarCaptchaExtension extends Extension
|
|
|
|
{
|
|
|
|
public function load(array $configs, ContainerBuilder $container)
|
|
|
|
{
|
2011-09-08 17:02:40 +02:00
|
|
|
|
2011-08-25 22:50:59 +02:00
|
|
|
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
|
|
|
$loader->load('services.yml');
|
|
|
|
|
2011-09-08 17:02:40 +02:00
|
|
|
$configuration = new Configuration();
|
|
|
|
$config = $this->processConfiguration($configuration, $configs);
|
|
|
|
|
|
|
|
$container->setParameter('gregwar_captcha.image.height', $config['image']['height']);
|
|
|
|
$container->setParameter('gregwar_captcha.image.width', $config['image']['width']);
|
2011-08-25 22:50:59 +02:00
|
|
|
$resources = $container->getParameter('twig.form.resources');
|
2011-09-08 17:02:40 +02:00
|
|
|
$container->setParameter('twig.form.resources',array_merge(array('GregwarCaptchaBundle::captcha.html.twig'), $resources));
|
|
|
|
|
2011-08-25 22:50:59 +02:00
|
|
|
}
|
2011-09-08 17:02:40 +02:00
|
|
|
|
2011-08-25 22:50:59 +02:00
|
|
|
}
|
|
|
|
|