Add a width and height configuration parameter and fix the form theming

so that it works.
This commit is contained in:
Gregory McLean
2011-09-08 11:02:40 -04:00
parent 421e1827c0
commit 1afeeb8733
2 changed files with 42 additions and 2 deletions

View File

@ -12,12 +12,19 @@ class GregwarCaptchaExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
{
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
$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']);
$resources = $container->getParameter('twig.form.resources');
$resources[] = 'GregwarCaptchaBundle::captcha.html.twig';
$container->setParameter('twig.form.resources', $resources);
$container->setParameter('twig.form.resources',array_merge(array('GregwarCaptchaBundle::captcha.html.twig'), $resources));
}
}