Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
DeliveryItemTypeService
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 3
20
0.00% covered (danger)
0.00%
0 / 1
 setDefaultItemType
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getDefaultItemType
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
6
 getDeliveryItemType
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
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) 2023 (original work) Open Assessment Technologies SA ;
19 *
20 */
21
22namespace oat\taoQtiTest\models;
23
24use oat\oatbox\service\ConfigurableService;
25
26class DeliveryItemTypeService extends ConfigurableService
27{
28    public const SERVICE_ID = 'taoQtiTest/DeliveryItemTypeService';
29
30    private const OPTION_DEFAULT_ITEM_TYPE = 'defaultItemType';
31
32    /**
33     * Sets the default item type the viewer should manage
34     */
35    public function setDefaultItemType(string $type)
36    {
37        $this->setOption(self::OPTION_DEFAULT_ITEM_TYPE, $type);
38    }
39
40    /**
41     * Gets the default item type the viewer should manage
42     * @return string|bool
43     */
44    public function getDefaultItemType()
45    {
46        if ($this->hasOption(self::OPTION_DEFAULT_ITEM_TYPE)) {
47            return $this->getOption(self::OPTION_DEFAULT_ITEM_TYPE);
48        }
49
50        return false;
51    }
52
53    /**
54     * Gets the type of item the viewer should manage
55     * @todo determine the item type from the $resultIdentifier
56     * @param string $resultIdentifier
57     * @return string
58     */
59    public function getDeliveryItemType($resultIdentifier)
60    {
61        return $this->getDefaultItemType();
62    }
63}