Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
SasImport | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
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) 2002-2008 (original work) Public Research Centre Henri Tudor & University of Luxembourg |
19 | * (under the project TAO & TAO2); |
20 | * 2002-2008 (update and modification) Public Research Centre Henri Tudor & University of Luxembourg |
21 | * (under the project TAO & TAO2); |
22 | * 2009-2012 (update and modification) Public Research Centre Henri Tudor |
23 | * (under the project TAO-SUSTAIN & TAO-DEV); |
24 | */ |
25 | |
26 | namespace oat\taoTestTaker\actions; |
27 | |
28 | use oat\tao\model\routing\AnnotationReader\security; |
29 | |
30 | /** |
31 | * Extends the common Import class to update the behavior |
32 | * |
33 | * @author Bertrand Chevrier, <taosupport@tudor.lu> |
34 | * @package taoTestTaker |
35 | * @license GPLv2 http://www.opensource.org/licenses/gpl-2.0.php |
36 | * |
37 | */ |
38 | |
39 | class SasImport extends Import |
40 | { |
41 | /** |
42 | * @see Subjects::__construct() |
43 | * @security("hide") |
44 | */ |
45 | public function __construct() |
46 | { |
47 | \tao_helpers_Context::load('STANDALONE_MODE'); |
48 | parent::__construct(); |
49 | } |
50 | } |