Symfony:附加 YAML 设置而不是覆盖

发布于 2024-12-12 20:19:35 字数 456 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

高冷爸爸 2024-12-19 20:19:35

不会。它将覆盖应用级别存储的样式表定义。

但您可以执行以下操作之一:

  • 将样式表添加到特定模板 - 将以下内容添加到模板文件:

    >
    
  • 将样式表添加到模块的所有模板 - 将以下内容添加到您的 actions.class.php :

    公共函数 preExecute()
    {
      父级::preExecute();
      $this->getResponse()->addStylesheet('third');
    }
    

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:

    <?php use_stylesheet('third') ?>
    
  • Add a stylesheet to all templates of a module - add the following to your actions.class.php:

    public function preExecute()
    {
      parent::preExecute();
      $this->getResponse()->addStylesheet('third');
    }
    
神爱温柔 2024-12-19 20:19:35

您应该在模块的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文