php – 如何在Symfony 4中覆盖第三方捆绑包的资源?

前端之家收集整理的这篇文章主要介绍了php – 如何在Symfony 4中覆盖第三方捆绑包的资源?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用Symfony Flex进行了新的Symfony安装,新的骨架属于下一个Symfony 4目录结构.接下来,来自外部捆绑包的 I’m going to override some resources个模板,翻译等.

我试图为模板创建所有这些路径(开始),但没有任何作用:

> templates / EasyAdminBundle / views / …
> templates / Resources / EasyAdminBundle / views / …
> app / Resources / …(只是来自旧结构的证明)

我应该在哪里放置我的资源文件来覆盖第三方捆绑资源?

对于所有Symfony版本,资源路径为%kernel.root_dir%/ Resources /.由于新的4.0结构将Kernel.PHP放入src /目录,因此它是:
# local resources directory
src/Resources/
# still works this path for local templates
src/Resources/views/ 

# override resources for third-party bundles
src/Resources/AcmeDemoBundle/views/ # legacy convention to override templates
src/Resources/AcmeDemoBundle/translations/ # for override both translations and validations files
src/Resources/AcmeDemoBundle/... # etc.

覆盖资源的新约定(自Symfony 3.4起)

Twig Templates
按照惯例:

templates/bundles/AcmeDemoBundle/path/to/template.html.twig

If you are upgrading to Symfony 3.4 & 4.0 and you want to use the prevIoUs templates conventions,configure your own Twig’s paths:

06002

Translations:与templates /类似,您在项目的根目录中拥有翻译/目录(默认情况下):

translations/bundles/AcmeDemoBundle/messages.en.yml

注意:/ bundles / AcmeDemoBundle /子目录不是必需的,因为翻译与bundle无关,而与域有关.这意味着只要它在正确的域中,您就可以覆盖翻译.

原文链接:/php/135426.html

猜你在找的PHP相关文章