Adding locale selection

This commit is contained in:
Marc Ducobu 2014-11-12 15:47:00 +01:00
parent 8220dfc518
commit fb90d290cf

View File

@ -1,5 +1,5 @@
report_select_type: report_select_type:
pattern: /person/{person_id}/report/select/type/for/creation pattern: /{_locale}/person/{person_id}/report/select/type/for/creation
defaults: { _controller: "ChillReportBundle:Report:selectReportType" } defaults: { _controller: "ChillReportBundle:Report:selectReportType" }
options: options:
menus: menus:
@ -7,16 +7,16 @@ report_select_type:
order: 100 order: 100
label: Add a report label: Add a report
report_new: report_new:
path: /person/{person_id}/report/cfgroup/{cf_group_id}/new path: /{_locale}/person/{person_id}/report/cfgroup/{cf_group_id}/new
defaults: { _controller: "ChillReportBundle:Report:new" } defaults: { _controller: "ChillReportBundle:Report:new" }
report_create: report_create:
path: /person/{person_id}/report/cfgroup/{cf_group_id}/create path: /{_locale}/person/{person_id}/report/cfgroup/{cf_group_id}/create
defaults: { _controller: "ChillReportBundle:Report:create" } defaults: { _controller: "ChillReportBundle:Report:create" }
requirements: { _method: post } requirements: { _method: post }
report_list: report_list:
path: /person/{person_id}/report/list path: /{_locale}/person/{person_id}/report/list
defaults: { _controller: "ChillReportBundle:Report:list" } defaults: { _controller: "ChillReportBundle:Report:list" }
options: options:
menus: menus:
@ -24,14 +24,14 @@ report_list:
order: 101 order: 101
label: Report list label: Report list
report_view: report_view:
path: /person/{person_id}/report/{report_id}/view path: /{_locale}/person/{person_id}/report/{report_id}/view
defaults: { _controller: "ChillReportBundle:Report:view" } defaults: { _controller: "ChillReportBundle:Report:view" }
report_edit: report_edit:
path: /person/{person_id}/report/{report_id}/edit path: /{_locale}/person/{person_id}/report/{report_id}/edit
defaults: { _controller: "ChillReportBundle:Report:edit" } defaults: { _controller: "ChillReportBundle:Report:edit" }
report_update: report_update:
path: /person/{person_id}/report/{report_id}/update path: /{_locale}/person/{person_id}/report/{report_id}/update
defaults: { _controller: "ChillReportBundle:Report:update" } defaults: { _controller: "ChillReportBundle:Report:update" }
requirements: { _method: post|put } requirements: { _method: post|put }