Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 17 |
|
0.00% |
0 / 7 |
CRAP | |
0.00% |
0 / 1 |
InfoControl | |
0.00% |
0 / 17 |
|
0.00% |
0 / 7 |
56 | |
0.00% |
0 / 1 |
getUsedAttributes | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |||
getMarkup | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
setMarkup | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
toArray | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
getTemplateQti | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getTemplateQtiVariables | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |||
feed | |
0.00% |
0 / 2 |
|
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 | namespace oat\taoQtiItem\model\qti; |
23 | |
24 | use oat\taoQtiItem\model\qti\Element; |
25 | use oat\taoQtiItem\model\qti\ParserFactory; |
26 | use DOMElement; |
27 | |
28 | /** |
29 | * Class representing QTI standatd InfoControl |
30 | * |
31 | * @see http://www.imsglobal.org/question/qtiv2p1/imsqti_infov2p1.html#element10433a |
32 | * @access public |
33 | * @author Sam, <sam@taotestin.com> |
34 | * @package taoQtiItem |
35 | |
36 | */ |
37 | abstract class InfoControl extends Element |
38 | { |
39 | /** |
40 | * the QTI tag name as defined in QTI standard |
41 | * |
42 | * @access protected |
43 | * @var string |
44 | */ |
45 | protected static $qtiTagName = 'infoControl'; |
46 | |
47 | protected $typeIdentifier = '';//to be set in advance, read only, non editable |
48 | protected $markup = ''; |
49 | |
50 | public function getUsedAttributes() |
51 | { |
52 | return [ |
53 | 'oat\\taoQtiItem\\model\\qti\\attribute\\Title' |
54 | ]; |
55 | } |
56 | |
57 | public function getMarkup() |
58 | { |
59 | return $this->markup; |
60 | } |
61 | |
62 | public function setMarkup($markup) |
63 | { |
64 | $this->markup = (string) $markup; |
65 | } |
66 | |
67 | public function toArray($filterVariableContent = false, &$filtered = []) |
68 | { |
69 | |
70 | $returnValue = parent::toArray($filterVariableContent, $filtered); |
71 | |
72 | $returnValue['typeIdentifier'] = $this->typeIdentifier; |
73 | $returnValue['markup'] = $this->markup; |
74 | |
75 | return $returnValue; |
76 | } |
77 | |
78 | public static function getTemplateQti() |
79 | { |
80 | return static::getTemplatePath() . 'interactions/qti.infoControlInteraction.tpl.php'; |
81 | } |
82 | |
83 | protected function getTemplateQtiVariables() |
84 | { |
85 | |
86 | $variables = parent::getTemplateQtiVariables(); |
87 | |
88 | $variables['typeIdentifier'] = $this->typeIdentifier; |
89 | $variables['markup'] = $this->markup; |
90 | |
91 | return $variables; |
92 | } |
93 | |
94 | public function feed(ParserFactory $parser, DOMElement $data, QtiNamespace $xmlns = null) |
95 | { |
96 | |
97 | $markup = $parser->getBodyData($data->item(0), true); |
98 | $this->setMarkup($markup); |
99 | } |
100 | } |