简体   繁体   中英

Symfony2 change default path where twig templates are created

While creating controllers from the console by typing php app/console generate:controller a few questions are asked, controller name: routing format , template format , and then the thing i'm intrested in template name

Here the option shows AppBundle:admin:admin.html.twig and the template is create inside the AppBundle/Resources/views .What i want is to have the template automatically created under app/Resources/views folder through the command line prompt i want the template name option to show admin/admin.html.twig instead

edit: and also the change from {% extends "::base.html.twig" %} to {% extends "base.html.twig" %}

any help would be appreciated thanks :)

Sorry you can't change directory destination of template with this command, path of template relate to the bundle.

You can easily use the command then doing change you want. If you have to do this often, maybe you create your own command extending the symfony's command.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM