Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 1 |
| FrontOfficeEntryPoint | |
0.00% |
0 / 5 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 1 |
| getId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getTitle | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getLabel | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getDescription | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getUrl | |
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) 2014-2017 (original work) Open Assessment Technologies SA; |
| 19 | * |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | namespace oat\taoDelivery\model\entrypoint; |
| 24 | |
| 25 | use oat\oatbox\Configurable; |
| 26 | use oat\tao\model\entryPoint\Entrypoint; |
| 27 | |
| 28 | class FrontOfficeEntryPoint extends Configurable implements Entrypoint |
| 29 | { |
| 30 | public function getId() |
| 31 | { |
| 32 | return 'deliveryServer'; |
| 33 | } |
| 34 | |
| 35 | public function getTitle() |
| 36 | { |
| 37 | return __('Test-Takers'); |
| 38 | } |
| 39 | |
| 40 | public function getLabel() |
| 41 | { |
| 42 | return __('TAO Delivery Server'); |
| 43 | } |
| 44 | |
| 45 | public function getDescription() |
| 46 | { |
| 47 | return __('Take or continue a test.'); |
| 48 | } |
| 49 | |
| 50 | public function getUrl() |
| 51 | { |
| 52 | return _url("index", "DeliveryServer", "taoDelivery"); |
| 53 | } |
| 54 | } |