在 Symfony 自动生成的管理模块中包含插槽

发布于 2024-11-15 16:14:50 字数 162 浏览 5 评论 0原文

有没有办法在 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 技术交流群。

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

发布评论

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

评论(1

铜锣湾横着走 2024-11-22 16:14:50

实现此目的最简单的方法可能是覆盖生成的模板。

管理生成器根据 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.

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