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.
There's no built in method to fetch it, but it's easy to figure out.
From within a controller:
__DIR__.'/../Resources/config'
In fact, you'll see your bundle's Extension class using it in its load()
method.
Or you could get the kernel
service and then run
$kernel->locateResource('@NameOfBundle/Resources/config/filename');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With