mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-07 07:14:58 +00:00
initial commit
This commit is contained in:
3
Resources/config/routing.yml
Normal file
3
Resources/config/routing.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
chill_amli_budget_controllers:
|
||||
resource: "@ChillAMLIBudgetBundle/Controller"
|
||||
type: annotation
|
2
Resources/config/services/calculator.yml
Normal file
2
Resources/config/services/calculator.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Calculator\CalculatorManager: ~
|
5
Resources/config/services/config.yml
Normal file
5
Resources/config/services/config.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Config\ConfigRepository:
|
||||
arguments:
|
||||
$resources: '%chill_budget.resources%'
|
||||
$charges: '%chill_budget.charges%'
|
5
Resources/config/services/controller.yml
Normal file
5
Resources/config/services/controller.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
services:
|
||||
Chill\AMLI\BudgetBundle\Controller\:
|
||||
autowire: true
|
||||
resource: '../../../Controller'
|
||||
tags: ['controller.service_arguments']
|
14
Resources/config/services/form.yml
Normal file
14
Resources/config/services/form.yml
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
Resources/config/services/menu.yml
Normal file
7
Resources/config/services/menu.yml
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' }
|
7
Resources/config/services/security.yml
Normal file
7
Resources/config/services/security.yml
Normal file
@@ -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 }
|
7
Resources/config/services/templating.yml
Normal file
7
Resources/config/services/templating.yml
Normal file
@@ -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