mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-24 00:23:50 +00:00
@@ -1,14 +0,0 @@
|
||||
Chill\CustomFieldsBundle\Entity\Adress:
|
||||
type: entity
|
||||
table: null
|
||||
id:
|
||||
id:
|
||||
type: integer
|
||||
id: true
|
||||
generator:
|
||||
strategy: AUTO
|
||||
fields:
|
||||
data:
|
||||
type: string
|
||||
length: 255
|
||||
lifecycleCallbacks: { }
|
@@ -1,23 +0,0 @@
|
||||
Chill\CustomFieldsBundle\Entity\BlopEntity:
|
||||
type: entity
|
||||
table: blop_entity
|
||||
id:
|
||||
id:
|
||||
type: integer
|
||||
id: true
|
||||
generator:
|
||||
strategy: AUTO
|
||||
fields:
|
||||
field1:
|
||||
type: string
|
||||
length: 255
|
||||
field2:
|
||||
type: string
|
||||
length: 255
|
||||
customField:
|
||||
type: json_array
|
||||
manyToOne:
|
||||
adress:
|
||||
targetEntity: Chill\CustomFieldsBundle\Entity\Adress
|
||||
cascade: [persist]
|
||||
lifecycleCallbacks: { }
|
@@ -1,16 +0,0 @@
|
||||
Chill\CustomFieldsBundle\Entity\BlopEntity2:
|
||||
type: entity
|
||||
table: null
|
||||
id:
|
||||
id:
|
||||
type: integer
|
||||
id: true
|
||||
generator:
|
||||
strategy: AUTO
|
||||
fields:
|
||||
customFieldData:
|
||||
type: json_array
|
||||
lifecycleCallbacks:
|
||||
postLoad: [ loadCustomFieldConfig, unfoldCustomFieldData ]
|
||||
preFlush: [ preFlush ]
|
||||
prePersist: [ prePersist ]
|
@@ -2,22 +2,10 @@ chill_customfields_customfieldsgroup:
|
||||
resource: "@ChillCustomFieldsBundle/Resources/config/routing/customfieldsgroup.yml"
|
||||
prefix: /
|
||||
|
||||
chill_customfields_blopentity2:
|
||||
resource: "@ChillCustomFieldsBundle/Resources/config/routing/blopentity2.yml"
|
||||
prefix: /blopentity2
|
||||
|
||||
chill_customfields_adress:
|
||||
resource: "@ChillCustomFieldsBundle/Resources/config/routing/adress.yml"
|
||||
prefix: /adress
|
||||
|
||||
chill_customfields_customfield:
|
||||
resource: "@ChillCustomFieldsBundle/Resources/config/routing/customfield.yml"
|
||||
prefix: /
|
||||
|
||||
chill_customfields_blopentity:
|
||||
resource: "@ChillCustomFieldsBundle/Resources/config/routing/blopentity.yml"
|
||||
prefix: /
|
||||
|
||||
chill_customfields_customfieldsdefaultgroup:
|
||||
resource: "@ChillCustomFieldsBundle/Resources/config/routing/customfieldsdefaultgroup.yml"
|
||||
prefix: /
|
@@ -1,30 +0,0 @@
|
||||
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 }
|
@@ -1,42 +0,0 @@
|
||||
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"}
|
@@ -1,30 +0,0 @@
|
||||
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 }
|
Reference in New Issue
Block a user