Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Bundle called Web\CoworkerBundle. In DIC/Configuration.php I have:

$rootNode = $treeBuilder->root('web_coworker');
$rootNode
    ->children()
        ->scalarNode('redirect_url')->defaultNull()->end()
    ->end();

In config.yml I have:

web_coworker:
    redirect_url: "http://www.example.com/"

Now in my DefaultController.php, I do

return array(
    'url' => $this->container->getParameter('redirect_url')
);

I get the error

The parameter "redirect_url" must be defined.

Do I miss something?

share|improve this question
Is that OK that you have typo in ` ->scalarstackoNde('redirect_url')->defaultNull()->end()` ? – thecatontheflat Jul 25 '12 at 12:24
Sorry, that was a copy-paste error :) Fixed it. – GergelyPolonkai Jul 25 '12 at 12:38

1 Answer

up vote 1 down vote accepted

You need to create an extension in your bundle (Acme/DemoBundle/DependencyInjection)

class AcmeDemoBundleExtension 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');
        // MOST IMPORTANT LINE
        $container->setParameter('web_coworker.params', $config);
    }
}

No concerning the controller you can remove what your were returning and that should do the trick :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.