mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
71 lines
2.1 KiB
YAML
71 lines
2.1 KiB
YAML
|
|
|
|
chill_person_view:
|
|
pattern: /person/{person_id}/general
|
|
defaults: { _controller: ChillPersonBundle:Person:view }
|
|
options:
|
|
menus:
|
|
person:
|
|
order: 50
|
|
label: Person View
|
|
|
|
chill_person_general_edit:
|
|
pattern: /person/{person_id}/general/edit
|
|
defaults: {_controller: ChillPersonBundle:Person:edit }
|
|
|
|
chill_person_general_update:
|
|
pattern: /person/{person_id}/general/update
|
|
defaults: {_controller: ChillPersonBundle:Person:update }
|
|
|
|
chill_person_new:
|
|
pattern: /person/new
|
|
defaults: {_controller: ChillPersonBundle:Person:new }
|
|
|
|
chill_person_review:
|
|
pattern: /person/review
|
|
defaults: {_controller: ChillPersonBundle:Person:review }
|
|
|
|
chill_person_create:
|
|
pattern: /person/create
|
|
defaults: {_controller: ChillPersonBundle:Person:create }
|
|
|
|
|
|
chill_person_search:
|
|
pattern: /search
|
|
defaults: { _controller: ChillPersonBundle:Person:search }
|
|
|
|
chill_person_history_list:
|
|
pattern: /person/{person_id}/history
|
|
defaults: { _controller: ChillPersonBundle:History:list }
|
|
options:
|
|
menus:
|
|
person:
|
|
order: 100
|
|
label: menu.person.history
|
|
|
|
chill_person_history_create:
|
|
pattern: /person/{person_id}/history/create
|
|
defaults: { _controller: ChillPersonBundle:History:create }
|
|
|
|
|
|
chill_person_history_update:
|
|
pattern: /person/history/{history_id}/update
|
|
defaults: { _controller: ChillPersonBundle:History:update }
|
|
|
|
chill_person_history_close:
|
|
pattern: /person/{person_id}/history/close
|
|
defaults: { _controller: ChillPersonBundle:History:close }
|
|
|
|
chill_person_history_open:
|
|
pattern: /person/{person_id}/history/open
|
|
defaults: { _controller: ChillPersonBundle:History:open }
|
|
|
|
chill_person_admin:
|
|
pattern: /admin/person
|
|
defaults: { _controller: ChillPersonBundle:Admin:index }
|
|
options:
|
|
menus:
|
|
admin:
|
|
order: 100
|
|
label: menu.person.admin.index
|
|
helper: menu.person.admin.helper |