How would I get the path to the Resources/config folder as a string in a controller context in Symfony 2?
I have tried looking into the container, but I did not spot anything.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no built in method to fetch it, but it’s easy to figure out.
From within a controller:
In fact, you’ll see your bundle’s Extension class using it in its
load()method.