Symfony:附加 YAML 设置而不是覆盖
在 symfony 的 view.yml 中,我可以这样设置样式表:
(in frontend/config/view.yml)
stylesheets: [main, second]
如果我想将样式表添加到特定模块而不更改默认样式表怎么办? 写这样的内容,而不是写这一行
(in frontend/modules/mymodule/config/view.yml)
stylesheets: [main, second, third]
因此,我可以
(in frontend/modules/mymodule/config/view.yml)
stylesheets: [..., third]
:这样我就可以更改所有模块的默认样式表,而不必一一更改。
那么,有可能吗?
In symfony's view.yml
i can set the stylesheets in this way:
(in frontend/config/view.yml)
stylesheets: [main, second]
What if i wanted to add stylesheets to a specific module, without changing the default ones? so instead of writing this line:
(in frontend/modules/mymodule/config/view.yml)
stylesheets: [main, second, third]
I could write something like this:
(in frontend/modules/mymodule/config/view.yml)
stylesheets: [..., third]
This way I can change the default stylesheets for all the modules, and don't have to change it one by one.
So, is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会。它将覆盖应用级别存储的
样式表
定义。但您可以执行以下操作之一:
将样式表添加到特定模板 - 将以下内容添加到模板文件:
将样式表添加到模块的所有模板 - 将以下内容添加到您的
actions.class.php :
No. It will override the
stylesheets
definitions stored on the app level.But you could do one of the following:
Add a stylesheet to a specific template - add the following to your template file:
Add a stylesheet to all templates of a module - add the following to your
actions.class.php
:您应该在模块的 view.yml 中使用“all”而不是“default”,否则它将覆盖应用程序中定义的默认视图配置。
You should use «all» instead of «default» in your module's view.yml or it will override the default view configuration defined in the application.