Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 31 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
TranslationServiceProvider | |
0.00% |
0 / 31 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__invoke | |
0.00% |
0 / 31 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2024 (original work) Open Assessment Technologies SA. |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoItems\model\Translation\ServiceProvider; |
24 | |
25 | use oat\generis\model\data\Ontology; |
26 | use oat\generis\model\DependencyInjection\ContainerServiceProviderInterface; |
27 | use oat\oatbox\log\LoggerService; |
28 | use oat\tao\model\featureFlag\FeatureFlagChecker; |
29 | use oat\tao\model\resources\Service\InstanceCopier; |
30 | use oat\tao\model\TaoOntology; |
31 | use oat\tao\model\Translation\Form\Modifier\TranslationFormModifier as TaoTranslationFormModifier; |
32 | use oat\tao\model\Translation\Service\ResourceLanguageRetriever; |
33 | use oat\tao\model\Translation\Service\TranslationCreationService; |
34 | use oat\tao\model\Translation\Service\TranslationDeletionService; |
35 | use oat\taoItems\model\Translation\Form\Modifier\TranslationFormModifierProxy; |
36 | use oat\taoItems\model\Translation\Listener\TranslationItemEventListener; |
37 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
38 | |
39 | use function Symfony\Component\DependencyInjection\Loader\Configurator\service; |
40 | |
41 | class TranslationServiceProvider implements ContainerServiceProviderInterface |
42 | { |
43 | public function __invoke(ContainerConfigurator $configurator): void |
44 | { |
45 | $services = $configurator->services(); |
46 | |
47 | $services |
48 | ->set(TranslationFormModifierProxy::class, TranslationFormModifierProxy::class) |
49 | ->public(); |
50 | |
51 | $services |
52 | ->get(TranslationFormModifierProxy::class) |
53 | ->call( |
54 | 'addModifier', |
55 | [ |
56 | service(TaoTranslationFormModifier::class), |
57 | ] |
58 | ); |
59 | |
60 | $services |
61 | ->set(TranslationItemEventListener::class, TranslationItemEventListener::class) |
62 | ->public() |
63 | ->args([ |
64 | service(FeatureFlagChecker::class), |
65 | service(Ontology::SERVICE_ID), |
66 | service(ResourceLanguageRetriever::class), |
67 | service(LoggerService::SERVICE_ID), |
68 | service(TranslationDeletionService::class), |
69 | ]); |
70 | |
71 | $services |
72 | ->get(TranslationCreationService::class) |
73 | ->call( |
74 | 'setResourceTransfer', |
75 | [ |
76 | TaoOntology::CLASS_URI_ITEM, |
77 | service(InstanceCopier::class . '::ITEMS') |
78 | ] |
79 | ); |
80 | } |
81 | } |