Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
Guest | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
guest | |
0.00% |
0 / 5 |
|
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) 2015 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoDeliveryRdf\controller; |
23 | |
24 | use common_session_SessionManager; |
25 | use oat\taoDelivery\controller\DeliveryServer; |
26 | use oat\taoDeliveryRdf\model\guest\GuestTestTakerSession; |
27 | use oat\taoDelivery\models\classes\ReturnUrlService; |
28 | |
29 | /** |
30 | * DeliveryServer Controller |
31 | * |
32 | * @author CRP Henri Tudor - TAO Team - {@link http://www.tao.lu} |
33 | * @package taoDelivery |
34 | * @license GPLv2 http://www.opensource.org/licenses/gpl-2.0.php |
35 | */ |
36 | class Guest extends DeliveryServer |
37 | { |
38 | /** |
39 | * Init guest session and redirect to module index |
40 | */ |
41 | public function guest() |
42 | { |
43 | common_session_SessionManager::endSession(); |
44 | $session = new GuestTestTakerSession(); |
45 | common_session_SessionManager::startSession($session); |
46 | |
47 | $returnUrl = $this->getServiceLocator()->get(ReturnUrlService::SERVICE_ID)->getReturnUrl(); |
48 | $this->redirect($returnUrl); |
49 | } |
50 | } |