admingenerator配置错误

时间:2013-07-23 10:32:57

标签: symfony admin-generator

我正在尝试使用带有symfony的admin生成器来生成网站的后台。

我遇到了麻烦。

这是我的generator.yml(将更改一些名称以保密)

generator: admingenerator.generator.doctrine
params:
    model: Company\Bundle\projectBundle\Entity\Oeuvre
    namespace_prefix: Company
    bundle_name: Bundle\projectBundle
    fields:
      titre:
        help: If you want to see this content on you website


builders:
    list:
        params:
            title: List for Bundle\projectBundle
           display: [ titre ]
            actions:
                new: ~
            object_actions:
                edit: ~
                delete: ~
    filters:
        params:
            display: [ titre ]
    new:
        params:
            title: New object for Bundle\projectBundle
            display: [ titre ]
            actions:
                save: ~
                list: ~
    edit:
        params:
            title: "You're editing the object \"%object%\"|{ %object%: YourModel.title     }|"
            display: ~
            actions:
                save: ~
                list: ~
    show:
        params:
            title: "You're viewing the object \"%object%\"|{ %object%: YourModel.title }|"
            display: ~
            actions:
                list: ~
                new: ~
    actions:
        params:
            object_actions:
                delete: ~
            batch_actions:
                delete: ~

我收到错误Opps配置中发生错误。如果你在prod尝试缓存:warmup

但我不是生产环境,加温缓存不起作用。

有人可以帮忙吗?

TY

1 个答案:

答案 0 :(得分:0)

问题不在您的配置文件中。问题是你的捆绑深度。当前版本的AdminGenerator不适用于“前缀”捆绑包。将您的捆绑包从Company\Bundle\projectBundle\移至Company\projectBundle\计划。 我知道AdminGenerator文档页面说明你的捆绑方案是正确的,但仍然无效。只需更改Bundle深度即可。