删除未使用的表单过滤器
创建新架构时,可以使用以下选项来避免表单过滤器自动生成:
ExampleEntity:
symfony:
options:
filters: false
在我的特定情况下,该应用程序已经在生产中,我想知道从其中删除所有未使用的表单过滤器的最佳方法我的项目。 Doctrine 捆绑了一个简单而不错的任务来运行,或者我必须删除过滤器目录中的所有文件?
When a new schema is being created, its possible to avoid the forms filters auto-generation using the following option:
ExampleEntity:
symfony:
options:
filters: false
In my particular case, the app is already in production and I would like to know the best approach to remove all unused form filters from my project. Doctrine has bundled a simple and nice task to be run or I have to delete all the files place in the filters directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想删除所有过滤器,请在
generator.yml
中执行以下操作:如果您想删除特定过滤器,请执行以下操作:
这是 Symfony 1.4。
看看: Symfony 1.4:如何不通过generator.yml显示任何过滤器
If you want to remove all filters, in your
generator.yml
do:If you want to remove particular ones do:
This is Symfony 1.4.
Look at: Symfony 1.4: how to NOT display any filter through generator.yml