如何生成FOS UserBundle视图

时间:2014-09-06 15:46:13

标签: php symfony fosuserbundle

我使用FOS用户套件允许用户注册并登录我的应用。到现在为止它工作正常,但我不知道如何抓住这些观点?我可以以某种方式生成它们吗? Documentation似乎对此一无所知,只是重写模板,这不是我需要的......

起初我认为路由文件可能有用,因为它指向项目中的特定位置,但它列出了我在应用程序中甚至没有的文件夹

fos_user_security:
    resource: "@FOSUserBundle/Resources/config/routing/security.xml"

fos_user_profile:
    resource: "@FOSUserBundle/Resources/config/routing/profile.xml"
    prefix: /profile

fos_user_register:
    resource: "@FOSUserBundle/Resources/config/routing/registration.xml"
    prefix: /register

fos_user_resetting:
    resource: "@FOSUserBundle/Resources/config/routing/resetting.xml"
    prefix: /resetting

fos_user_change_password:
    resource: "@FOSUserBundle/Resources/config/routing/change_password.xml"
    prefix: /profile

根本没有FOSUserBundle目录......

2 个答案:

答案 0 :(得分:0)

您可以在vendor目录中找到安装的第三方软件包。

在这种情况下,@FOSUserBundle应该是指向vendor/friendsofsymfony/user-bundle/FOS/UserBundle/的指针。

如果您没有该目录,请尝试在项目根目录上运行此目录:composer update

答案 1 :(得分:0)

覆盖模板已有详细记录here