删除未使用的表单过滤器

发布于 2024-11-23 23:15:33 字数 227 浏览 0 评论 0原文

创建新架构时,可以使用以下选项来避免表单过滤器自动生成:

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 技术交流群。

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

发布评论

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

评论(1

死开点丶别碍眼 2024-11-30 23:15:33

如果您想删除所有过滤器,请在 generator.yml 中执行以下操作:

...
  filter:
    class: false
...

如果您想删除特定过滤器,请执行以下操作:

 ...
  filter:
    class: [filter_to_show1, filter_to_show2, filter_to_show3]  //The ones that you don't put will not be displayed 
...

这是 Symfony 1.4。
看看: Symfony 1.4:如何不通过generator.yml显示任何过滤器

If you want to remove all filters, in your generator.ymldo:

...
  filter:
    class: false
...

If you want to remove particular ones do:

 ...
  filter:
    class: [filter_to_show1, filter_to_show2, filter_to_show3]  //The ones that you don't put will not be displayed 
...

This is Symfony 1.4.
Look at: Symfony 1.4: how to NOT display any filter through generator.yml

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