symfony 中看不到自定义 yaml 文件
我创建了一个自定义 yaml 处理程序 myRunnerConfigHandler,并将其放置在
apps/frontend/lib/myRunnerConfigHandler.class.php
下,并创建了一个新的 config_handler 并将其放置在
apps/frontend/config/config_handler.yml
下现在,在 config_handler.yml 下,我为我的新纲要放置了我的配置:
modules/*/config/rundown.yml:
class: myRundownConfigHandler
基本上,在每个模块下,我想在下面有一个 yaml 文件 /apps/frontend/modules/home/config/rundown.yml
但是没有看到 rundown.yml 文件。在看到 rundown.ymls 之前我还需要做些什么吗?
谢谢
I created a custom yaml handler, myRunnerConfigHandler, and placed it under
apps/frontend/lib/myRunnerConfigHandler.class.php
and created a new config_handler and placed it under
apps/frontend/config/config_handler.yml
Now, under config_handler.yml,I placed my configuration for my new rundown:
modules/*/config/rundown.yml:
class: myRundownConfigHandler
Basically, under each module, I want to have a yaml file under
/apps/frontend/modules/home/config/rundown.yml
However no rundown.yml files are being seen. Is there something else I need to do before rundown.ymls are seen?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
命名问题? myRunnerConfigHandler VS myRundownConfigHandler ?我看到你的例子中都有它们。
Naming-issues? myRunnerConfigHandler VS myRundownConfigHandler ? I see you have them both in your example.