remove deprecated templating component

This commit is contained in:
2023-07-22 23:05:34 +02:00
parent 4028cc8a8b
commit 7a5db59ac2
10 changed files with 29 additions and 45 deletions

View File

@@ -37,18 +37,15 @@ services:
chill.custom_field.text:
class: Chill\CustomFieldsBundle\CustomFields\CustomFieldText
arguments:
- "@request_stack"
- "@templating"
- "@chill.main.helper.translatable_string"
autowire: true
autoconfigure: true
tags:
- { name: 'chill.custom_field', type: 'text' }
chill.custom_field.number:
class: Chill\CustomFieldsBundle\CustomFields\CustomFieldNumber
arguments:
- "@templating"
- "@chill.main.helper.translatable_string"
autowire: true
autoconfigure: true
tags:
- { name: 'chill.custom_field', type: 'number' }
@@ -64,10 +61,8 @@ services:
chill.custom_field.choice:
class: Chill\CustomFieldsBundle\CustomFields\CustomFieldChoice
arguments:
- "@translator.default"
- "@templating"
- "@chill.main.helper.translatable_string"
autowire: true
autoconfigure: true
tags:
- { name: 'chill.custom_field', type: 'choice' }
@@ -85,18 +80,15 @@ services:
chill.custom_field.title:
class: Chill\CustomFieldsBundle\CustomFields\CustomFieldTitle
arguments:
- "@request_stack"
- "@templating"
- "@chill.main.helper.translatable_string"
autowire: true
autoconfigure: true
tags:
- { name: 'chill.custom_field', type: 'title' }
chill.custom_field.date:
class: Chill\CustomFieldsBundle\CustomFields\CustomFieldDate
arguments:
- "@templating"
- "@chill.main.helper.translatable_string"
autoconfigure: true
autowire: true
tags:
- { name: 'chill.custom_field', type: 'date' }