Symfony - 覆盖 YAML 中的默认配置设置
我试图覆盖前端应用程序中的配置设置 sf_app_template_directory 。
我可以在我的控制器中执行此操作,如下所示:
sfConfig::set('sf_app_template_dir', 'somewhere else');
但是,我不确定在 YAML 配置中执行此操作的确切语法。
有人可以帮忙吗?
谢谢。
I am trying to overwrite the config setting sf_app_template_directory within my frontend application.
I can do it from within my controller, like this:
sfConfig::set('sf_app_template_dir', 'somewhere else');
However, I'm not sure about the exact syntax to perform this from within my YAML configuration.
Can anyone help?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在项目配置(或特定于前端,如果需要)中更改它。这里的示例准确地解释了您想要做什么:
http://www.symfony-project.org/gentle-introduction/1_4/en/19-Mastering-Symfony-s-Configuration-Files#chapter_19_sub_customizing_the_file_struct
You can change it in the project configuration (or frontend-specifically if needed). The example here explains exactly what you're looking to do:
http://www.symfony-project.org/gentle-introduction/1_4/en/19-Mastering-Symfony-s-Configuration-Files#chapter_19_sub_customizing_the_file_structure