在 Symfony 自动生成的管理模块中包含插槽
有没有办法在 Symfony 中包含 generator.yml
中的插槽?我只想在某些后端模块中添加一段 HTML 代码,而插槽是我能想到的最好的主意。
如果不使用 generator.yml
,我该如何实现这一目标?
谢谢!
Is there a way of including a slot from generator.yml
in Symfony? I would like to add a piece of HTML code only within some backend modules, and slots is the best idea I can come up with.
If not with generator.yml
, how can I achieve this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现此目的最简单的方法可能是覆盖生成的模板。
管理生成器根据
generator.yml
生成模板。您可以在/cache///modules//templates
中查看这些生成的模板。如果您查看此文件夹中的文件,您只需在自己模块的模板文件夹中覆盖它们(而不是在缓存文件夹中!)。
只需将缓存文件夹中的文件之一复制到模块的模板文件夹中并开始编辑即可。
Probably the easiest way to achieve this is to override the generated templates.
The admin generator generates templates based on
generator.yml
. You can view these generated templates in/cache/<app>/<env>/modules/<module>/templates
.If you view the files in this folder, you can just override them in the templates folder of your own module (not in the cache folder!).
Just copy one of the files from the cache folder to the template folder of your module and start editing.