Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got the following problem:

  • I have in my ActionContoller-Method : doSomeAction().
  • This one in calling a new Class, eg. my DocumentManager, controlling my Documents.
  • This DocumentManager needs the FileUploadManager.

ok ...

  • ActionContoller -> DocumentManager -> FileUploadManager

Now I need to get some parameters from my config file stored at: app/config/config.yml

  • I want to use something like in Symfony 1.4 : sfConfig::get('myVar') ....
  • I don't want to write for every paramter-pool a separate service ....
  • I cannot define all parameters as arguments for a Service ...

  • Also I don't want to pass the actionController ( similar objects like the AppKernel ) through all classes I get in touch with ...

It should be quite easy, but I don't get it ... sorry Is there any advice you can give me ?

Many thanks ...

Cheers, Bjoern

share|improve this question

1 Answer

Did you try to use parser and dumper:

use Symfony\Component\Yaml\Dumper;
use Symfony\Component\Yaml\Parser;


    private function readconfigFile(){
            $configFile = $baseUrl.'/config/config.yml';
            $yaml = new Parser();
            $configArray = $yaml->parse(file_get_contents($configFile));

            $readValue = $configArray['doctrine']['orm']['entity_managers'];

            return $readValue;

}
share|improve this answer
Many thanks for your annotations ... – ZappZone May 7 '12 at 10:22

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.