mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
move bundle to root dir for inclusion in packagist refs #259
This commit is contained in:
30
Resources/config/routing/adress.yml
Normal file
30
Resources/config/routing/adress.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
adress:
|
||||
path: /
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:Adress:index" }
|
||||
|
||||
adress_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:Adress:show" }
|
||||
|
||||
adress_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:Adress:new" }
|
||||
|
||||
adress_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:Adress:create" }
|
||||
requirements: { _method: post }
|
||||
|
||||
adress_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:Adress:edit" }
|
||||
|
||||
adress_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:Adress:update" }
|
||||
requirements: { _method: post|put }
|
||||
|
||||
adress_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:Adress:delete" }
|
||||
requirements: { _method: post|delete }
|
42
Resources/config/routing/blopentity.yml
Normal file
42
Resources/config/routing/blopentity.yml
Normal file
@@ -0,0 +1,42 @@
|
||||
blopentity:
|
||||
path: /
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:index" }
|
||||
|
||||
blopentity_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:show" }
|
||||
|
||||
blopentity_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:new" }
|
||||
|
||||
blopentity_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:create" }
|
||||
requirements: { _method: post }
|
||||
|
||||
blopentity_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:edit" }
|
||||
|
||||
blopentity_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:update" }
|
||||
requirements: { _method: post|put }
|
||||
|
||||
blopentity_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:delete" }
|
||||
requirements: { _method: post|delete }
|
||||
|
||||
blopentity_cfget:
|
||||
path: /{id}/cfget/{key}
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:cfGet" }
|
||||
|
||||
blopentity_cfset:
|
||||
path: /{id}/cfset/{key}/{value}
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity:cfSet" }
|
||||
|
||||
blopentity_addmany_to_one:
|
||||
path: /{id}/add/custom/field/{key}
|
||||
defaults: {_controller: "ChillCustomFieldsBundle:BlopEntity:addNewManyToOne"}
|
30
Resources/config/routing/blopentity2.yml
Normal file
30
Resources/config/routing/blopentity2.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
blopentity2:
|
||||
path: /
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity2:index" }
|
||||
|
||||
blopentity2_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity2:show" }
|
||||
|
||||
blopentity2_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity2:new" }
|
||||
|
||||
blopentity2_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity2:create" }
|
||||
requirements: { _method: post }
|
||||
|
||||
blopentity2_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity2:edit" }
|
||||
|
||||
blopentity2_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity2:update" }
|
||||
requirements: { _method: post|put }
|
||||
|
||||
blopentity2_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:BlopEntity2:delete" }
|
||||
requirements: { _method: post|delete }
|
30
Resources/config/routing/customfield.yml
Normal file
30
Resources/config/routing/customfield.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
customfield:
|
||||
path: /
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomField:index" }
|
||||
|
||||
customfield_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomField:show" }
|
||||
|
||||
customfield_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomField:new" }
|
||||
|
||||
customfield_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomField:create" }
|
||||
requirements: { _method: post }
|
||||
|
||||
customfield_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomField:edit" }
|
||||
|
||||
customfield_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomField:update" }
|
||||
requirements: { _method: post|put }
|
||||
|
||||
customfield_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomField:delete" }
|
||||
requirements: { _method: post|delete }
|
30
Resources/config/routing/customfieldsgroup.yml
Normal file
30
Resources/config/routing/customfieldsgroup.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
customfieldsgroup:
|
||||
path: /
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:index" }
|
||||
|
||||
customfieldsgroup_show:
|
||||
path: /{id}/show
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:show" }
|
||||
|
||||
customfieldsgroup_new:
|
||||
path: /new
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:new" }
|
||||
|
||||
customfieldsgroup_create:
|
||||
path: /create
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:create" }
|
||||
requirements: { _method: post }
|
||||
|
||||
customfieldsgroup_edit:
|
||||
path: /{id}/edit
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:edit" }
|
||||
|
||||
customfieldsgroup_update:
|
||||
path: /{id}/update
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:update" }
|
||||
requirements: { _method: post|put }
|
||||
|
||||
customfieldsgroup_delete:
|
||||
path: /{id}/delete
|
||||
defaults: { _controller: "ChillCustomFieldsBundle:CustomFieldsGroup:delete" }
|
||||
requirements: { _method: post|delete }
|
Reference in New Issue
Block a user