How to access semantic configuration in controller using symfony2?

I follow the "Symantical Configuration for the Bundle Official Guide" for Symfony 2.

I have my configuration.php

namespace w9\UserBundle\DependencyInjection;

use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;

class Configuration implements ConfigurationInterface
{
    /**
     * {@inheritDoc}
     */
    public function getConfigTreeBuilder()
    {
        $treeBuilder = new TreeBuilder();
        $rootNode = $treeBuilder->root('w9_user');

        $rootNode
            ->children()
                ->scalarNode('logintext')->defaultValue('Zareejstruj się')->end()
            ->end()
        ;        

        return $treeBuilder;
    }
}

And w9UserExtension.php:

namespace w9\UserBundle\DependencyInjection;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader;

class w9UserExtension extends Extension
{
    /**
     * {@inheritDoc}
     */
    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');
    }
}

This may seem silly, but I cannot find a way how to access the logintext parameter in the controller?

$logintext = $this->container->getParameter("w9_user.logintext");

does not work.

What am I doing wrong?

+5
source share
2 answers

In the w9UserExtension.phpafter line processConfigurationjust add

$container->setParameter('w9_user.logintext', $config['logintext']);
+10
source

I wanted to indiscriminately add all my configuration values ​​to options like @acme, and writing dozens of lines setParameterwasn't lazy enough.

, setParameters Extension.

/**
 * Set all leaf values of the $config array as parameters in the $container.
 *
 * For example, a config such as this for the alias w9_user :
 *
 * w9_user:
 *   logintext: "hello"
 *   cache:
 *      enabled: true
 *   things:
 *      - first
 *      - second
 *
 * would yield the following :
 *
 * getParameter('w9_user.logintext') == "hello"
 * getParameter('w9_user.cache') ---> InvalidArgumentException
 * getParameter('w9_user.cache.enabled') == true
 * getParameter('w9_user.things') == array('first', 'second')
 *
 * It will resolve `%` variables like it normally would.
 * This is simply a convenience method to add the whole array.
 *
 * @param array $config
 * @param ContainerBuilder $container
 * @param string $namespace The parameter prefix, the alias by default.
 *                          Don't use this, it for recursion.
 */
protected function setParameters(array $config, ContainerBuilder $container,
                                 $namespace = null)
{
    $namespace = (null === $namespace) ? $this->getAlias() : $namespace;

    // Is the config array associative or empty ?
    if (array_keys($config) !== range(0, count($config) - 1)) {
        foreach ($config as $k => $v) {
            $current = $namespace . '.' . $k;
            if (is_array($v)) {
                // Another array, let use recursion
                $this->setParameters($v, $container, $current);
            } else {
                // It a leaf, let add it.
                $container->setParameter($current, $v);
            }
        }
    } else {
        // It is a sequential array, let consider it as a leaf.
        $container->setParameter($namespace, $config);
    }
}

:

class w9UserExtension extends Extension
{
    /**
     * {@inheritDoc}
     */
    public function load(array $configs, ContainerBuilder $container)
    {
        $configuration = new Configuration();
        $config = $this->processConfiguration($configuration, $configs);

        // Add them ALL as container parameters
        $this->setParameters($config, $container);

        // ...
    }
}

, / , , , , .

, .

, , , parameters:, , , .

.

0

All Articles