删除“新”来自后端应用程序模块 symfony 的操作

发布于 2024-11-02 07:39:17 字数 65 浏览 1 评论 0原文

我在后端应用程序中创建了一个模块。需要删除“新”操作,但不幸的是我不知道如何从generator.yml中删除它:(

I have created a module in backend application. need to remove the 'new' action, but unfortunately i don't know how to remove this from generator.yml :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

耶耶耶 2024-11-09 07:39:17

您可以指定各种视图(在本例中为列表视图)上可用的操作。我已从生成器配置中删除了不适用的选项。

  # generator.yml
  generator:
    class: sfDoctrineGenerator
    param:
      config:
        list:
          actions:
            {}

通过在 list:actions 设置上设置一个空数组,您可以删除指向新操作的链接。

请参阅 http://www.symfony 的“列表”部分-project.org/reference/1_4/en/06-Admin-Generator#chapter_06_actions

You can specifiy the actions available on the various views, in this case the list view. I have removed the options from the generator config that are not applicable.

  # generator.yml
  generator:
    class: sfDoctrineGenerator
    param:
      config:
        list:
          actions:
            {}

By setting an empty array on the list:actions setting you can remove the link to the new action.

See 'Lists' section at http://www.symfony-project.org/reference/1_4/en/06-Admin-Generator#chapter_06_actions

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