Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
ProctoringTextConverterTrait | |
0.00% |
0 / 5 |
|
0.00% |
0 / 3 |
20 | |
0.00% |
0 / 1 |
convert | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTextRegistry | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTextConverterService | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
6 |
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) 2016 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoProctoring\model\textConverter; |
23 | |
24 | use oat\oatbox\service\ServiceManager; |
25 | |
26 | trait ProctoringTextConverterTrait |
27 | { |
28 | /** |
29 | * The service to convert text reference |
30 | * |
31 | * @var ProctoringTextConverter |
32 | */ |
33 | protected $textConverterService; |
34 | |
35 | /** |
36 | * Method to convert text key by textConverter value |
37 | * |
38 | * @param $key |
39 | * @return mixed |
40 | */ |
41 | protected function convert($key) |
42 | { |
43 | return $this->getTextConverterService()->get($key); |
44 | } |
45 | |
46 | /** |
47 | * Get the list of words to convert |
48 | * |
49 | * @return array |
50 | */ |
51 | protected function getTextRegistry() |
52 | { |
53 | return $this->getTextConverterService()->getTextRegistry(); |
54 | } |
55 | |
56 | /** |
57 | * Get the TextConverterService |
58 | * |
59 | * @return ProctoringTextConverter |
60 | */ |
61 | protected function getTextConverterService() |
62 | { |
63 | if (! $this->textConverterService) { |
64 | $this->textConverterService = ServiceManager::getServiceManager()->get(ProctoringTextConverter::SERVICE_ID); |
65 | } |
66 | return $this->textConverterService; |
67 | } |
68 | } |