mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-02 13:03:50 +00:00
Merge master into translations branch
This commit is contained in:
@@ -33,25 +33,14 @@ services:
|
||||
# workflow related
|
||||
Chill\MainBundle\Workflow\:
|
||||
resource: '../Workflow/'
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
|
||||
Chill\MainBundle\Workflow\EntityWorkflowManager:
|
||||
autoconfigure: true
|
||||
autowire: true
|
||||
arguments:
|
||||
$handlers: !tagged_iterator chill_main.workflow_handler
|
||||
|
||||
Chill\MainBundle\Workflow\EventSubscriber\SendAccessKeyEventSubscriber:
|
||||
autoconfigure: true
|
||||
autowire: true
|
||||
tags:
|
||||
-
|
||||
name: 'doctrine.orm.entity_listener'
|
||||
event: 'postPersist'
|
||||
entity: 'Chill\MainBundle\Entity\Workflow\EntityWorkflowStep'
|
||||
# set the 'lazy' option to TRUE to only instantiate listeners when they are used
|
||||
lazy: true
|
||||
# seems to have no alias on symfony 5.4
|
||||
Symfony\Component\Mime\BodyRendererInterface:
|
||||
alias: 'twig.mime_body_renderer'
|
||||
|
||||
# other stuffes
|
||||
|
||||
|
@@ -133,6 +133,8 @@ services:
|
||||
|
||||
Chill\MainBundle\Form\WorkflowStepType: ~
|
||||
|
||||
Chill\MainBundle\Form\WorkflowSignatureMetadataType: ~
|
||||
|
||||
Chill\MainBundle\Form\DataMapper\PrivateCommentDataMapper:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
|
@@ -22,3 +22,8 @@ services:
|
||||
class: Chill\MainBundle\Routing\MenuTwig
|
||||
tags:
|
||||
- { name: twig.extension }
|
||||
|
||||
Chill\MainBundle\Routing\ChillUrlGenerator: ~
|
||||
|
||||
Chill\MainBundle\Routing\ChillUrlGeneratorInterface:
|
||||
alias: 'Chill\MainBundle\Routing\ChillUrlGenerator'
|
||||
|
@@ -32,11 +32,16 @@ services:
|
||||
- { name: twig.extension }
|
||||
|
||||
Chill\MainBundle\Templating\Entity\ChillEntityRenderExtension:
|
||||
arguments:
|
||||
$renders: !tagged_iterator chill.render_entity
|
||||
tags:
|
||||
- { name: twig.extension }
|
||||
|
||||
Chill\MainBundle\Templating\Entity\ChillEntityRenderManager:
|
||||
arguments:
|
||||
$renders: !tagged_iterator chill.render_entity
|
||||
|
||||
Chill\MainBundle\Templating\Entity\ChillEntityRenderManagerInterface:
|
||||
alias: 'Chill\MainBundle\Templating\Entity\ChillEntityRenderManager'
|
||||
|
||||
Chill\MainBundle\Templating\Entity\CommentRender:
|
||||
tags:
|
||||
- { name: 'chill.render_entity' }
|
||||
@@ -49,8 +54,14 @@ services:
|
||||
|
||||
Chill\MainBundle\Templating\Entity\NewsItemRender: ~
|
||||
|
||||
Chill\MainBundle\Templating\Entity\ChillGenderIconRender: ~
|
||||
|
||||
Chill\MainBundle\Templating\Entity\UserRender: ~
|
||||
|
||||
Chill\MainBundle\Templating\Entity\UserGroupRender: ~
|
||||
Chill\MainBundle\Templating\Entity\UserGroupRenderInterface:
|
||||
alias: Chill\MainBundle\Templating\Entity\UserGroupRender
|
||||
|
||||
Chill\MainBundle\Templating\Listing\:
|
||||
resource: './../../Templating/Listing'
|
||||
|
||||
|
@@ -3,6 +3,9 @@ services:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
|
||||
Chill\MainBundle\Validation\:
|
||||
resource: '../../Validation'
|
||||
|
||||
chill_main.validator_user_circle_consistency:
|
||||
class: Chill\MainBundle\Validator\Constraints\Entity\UserCircleConsistencyValidator
|
||||
arguments:
|
||||
|
Reference in New Issue
Block a user