Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
ContainerHottext
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 2
20
0.00% covered (danger)
0.00%
0 / 1
 getValidElementTypes
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 1
2
 afterElementSet
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
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) 2013-2022 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 */
20
21namespace oat\taoQtiItem\model\qti\container;
22
23use oat\taoQtiItem\model\qti\Element;
24use oat\taoQtiItem\model\qti\choice\Hottext;
25use oat\taoQtiItem\model\qti\feedback\Feedback;
26use oat\taoQtiItem\model\qti\Figure;
27use oat\taoQtiItem\model\qti\Img;
28use oat\taoQtiItem\model\qti\Math;
29use oat\taoQtiItem\model\qti\QtiObject;
30use oat\taoQtiItem\model\qti\Table;
31use oat\taoQtiItem\model\qti\Tooltip;
32
33/**
34 * The QTI_Container object represents the generic element container
35 *
36 * @access public
37 * @author Sam, <sam@taotesting.com>
38 * @package taoQTI
39
40 */
41class ContainerHottext extends Container
42{
43    /**
44     * @inheritDoc
45     */
46    public function getValidElementTypes(): array
47    {
48        return [
49            Img::class,
50            Math::class,
51            Table::class,
52            Tooltip::class,
53            Feedback::class,
54            Figure::class,
55            Hottext::class,
56            QtiObject::class,
57        ];
58    }
59
60    public function afterElementSet(Element $qtiElement)
61    {
62        parent::afterElementSet($qtiElement);
63        if ($qtiElement instanceof Hottext) {
64            $item = $this->getRelatedItem();
65            if (isset($item)) {
66                $qtiElement->setRelatedItem($item);
67            }
68        }
69    }
70}