mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-04 05:44:58 +00:00
Prepare for moving into monorepo
This commit is contained in:
3
src/Bundle/ChillBudgetBundle/config/routing.yaml
Normal file
3
src/Bundle/ChillBudgetBundle/config/routing.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
chill_amli_budget_controllers:
|
||||
resource: "@ChillAMLIBudgetBundle/Controller"
|
||||
type: annotation
|
@@ -0,0 +1,2 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Calculator\CalculatorManager: ~
|
5
src/Bundle/ChillBudgetBundle/config/services/config.yaml
Normal file
5
src/Bundle/ChillBudgetBundle/config/services/config.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Config\ConfigRepository:
|
||||
arguments:
|
||||
$resources: '%chill_budget.resources%'
|
||||
$charges: '%chill_budget.charges%'
|
@@ -0,0 +1,5 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Controller\:
|
||||
autowire: true
|
||||
resource: '../../Controller'
|
||||
tags: ['controller.service_arguments']
|
14
src/Bundle/ChillBudgetBundle/config/services/form.yaml
Normal file
14
src/Bundle/ChillBudgetBundle/config/services/form.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Form\ResourceType:
|
||||
arguments:
|
||||
$configRepository: '@Chill\AMLI\BudgetBundle\Config\ConfigRepository'
|
||||
$translatableStringHelper: '@Chill\MainBundle\Templating\TranslatableStringHelper'
|
||||
tags:
|
||||
- { name: 'form.type' }
|
||||
|
||||
Chill\AMLI\BudgetBundle\Form\ChargeType:
|
||||
arguments:
|
||||
$configRepository: '@Chill\AMLI\BudgetBundle\Config\ConfigRepository'
|
||||
$translatableStringHelper: '@Chill\MainBundle\Templating\TranslatableStringHelper'
|
||||
tags:
|
||||
- { name: 'form.type' }
|
7
src/Bundle/ChillBudgetBundle/config/services/menu.yaml
Normal file
7
src/Bundle/ChillBudgetBundle/config/services/menu.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Menu\UserMenuBuilder:
|
||||
arguments:
|
||||
$authorizationChecker: '@Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface'
|
||||
$translator: '@Symfony\Component\Translation\TranslatorInterface'
|
||||
tags:
|
||||
- { name: 'chill.menu_builder' }
|
@@ -0,0 +1,7 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Security\Authorization\BudgetElementVoter:
|
||||
arguments:
|
||||
$authorizationHelper: '@Chill\MainBundle\Security\Authorization\AuthorizationHelper'
|
||||
tags:
|
||||
- { name: chill.role }
|
||||
- { name: security.voter }
|
@@ -0,0 +1,7 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Templating\Twig:
|
||||
arguments:
|
||||
$configRepository: '@Chill\AMLI\BudgetBundle\Config\ConfigRepository'
|
||||
$translatableStringHelper: '@Chill\MainBundle\Templating\TranslatableStringHelper'
|
||||
tags:
|
||||
- { name: 'twig.extension' }
|
Reference in New Issue
Block a user