Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
Prompt | |
0.00% |
0 / 5 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |||
getBody | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getUsedAttributes | |
0.00% |
0 / 1 |
|
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) 2013 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | * |
20 | * |
21 | */ |
22 | |
23 | namespace oat\taoQtiItem\model\qti\interaction; |
24 | |
25 | use oat\taoQtiItem\model\qti\Element; |
26 | use oat\taoQtiItem\model\qti\container\FlowContainer; |
27 | use oat\taoQtiItem\model\qti\Item; |
28 | use oat\taoQtiItem\model\qti\container\ContainerStatic; |
29 | |
30 | /** |
31 | * The prompt represent the stimilus of a block interaction |
32 | * |
33 | * @access public |
34 | * @author Sam, <sam@taotesting.com> |
35 | * @package taoQTI |
36 | * @see http://www.imsglobal.org/question/qtiv2p1/imsqti_infov2p1.html#element10269 |
37 | |
38 | */ |
39 | class Prompt extends Element implements FlowContainer |
40 | { |
41 | /** |
42 | * the QTI tag name as defined in QTI standard |
43 | * |
44 | * @access protected |
45 | * @var string |
46 | */ |
47 | protected static $qtiTagName = 'prompt'; |
48 | protected $body = null; |
49 | |
50 | public function __construct($attributes = [], Item $relatedItem = null, $serial = '') |
51 | { |
52 | parent::__construct($attributes, $relatedItem, $serial); |
53 | $this->body = new ContainerStatic('', $relatedItem); |
54 | } |
55 | |
56 | public function getBody() |
57 | { |
58 | return $this->body; |
59 | } |
60 | |
61 | protected function getUsedAttributes() |
62 | { |
63 | return []; |
64 | } |
65 | } |