I have added a setting to my config.yml file as such:

app.config:
    contact_email: somebody@gmail.com
    ...

For the life of me, I can't figure out how to read it into a variable. I tried something like this in one of my controllers:

$recipient = $this->container->getParameter('contact_email');

But I get an error saying:

The parameter "contact_email" must be defined.

I've cleared my cache, I also looked everywhere on the Symfony2 reloaded site documentation, but I can't find out how to do this.

Probably just too tired to figure this out now. Can anyone help with this?

link|improve this question

feedback

2 Answers

up vote 30 down vote accepted

Rather than defining contact_email within app.config, define it in a parameters entry:

parameters:
    contact_email: somebody@gmail.com

You should find the call you are making within your controller now works.

link|improve this answer
feedback

The symfony doc - for version 1.0 - says

// Retrieve a setting
$parameter = sfConfig::get('param_name', $default_value);

But you have to concat the param_name in a special order:

The parameter name is the concatenation of several elements, separated by underscores, in this order:

A prefix related to the configuration file name (sf_ for settings.yml, app_ for app.yml, mod_ for module.yml, sf_i18n_ for i18n.yml, and sf_logging_ for logging.yml)
The parent keys (if defined), in lowercase
The name of the key, in lowercase

Symfony version 1.0 (old) doc for config files: http://www.symfony-project.org/book/1_0/05-Configuring-Symfony

link|improve this answer
7  
This is Symfony 1 and didnt work with Version 2 anymore – Timo Jun 16 '11 at 9:16
This guy is using Symfony2, not Symfony1. – just_wes Apr 10 at 14:58
feedback

Your Answer

 
or
required, but never shown

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