Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
BackOfficeEntryPoint
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 5
30
0.00% covered (danger)
0.00%
0 / 1
 getId
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getTitle
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getLabel
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getDescription
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getUrl
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
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-2023 (original work) Open Assessment Technologies SA.
19 */
20
21namespace oat\taoBackOffice\model\entryPoint;
22
23use oat\oatbox\PhpSerializable;
24use oat\oatbox\Configurable;
25use oat\tao\model\entryPoint\Entrypoint;
26
27class BackOfficeEntryPoint extends Configurable implements Entrypoint
28{
29    public function getId()
30    {
31        return 'backoffice';
32    }
33
34    public function getTitle()
35    {
36        return __('Test Developers and Administrators');
37    }
38
39    public function getLabel()
40    {
41        return __('TAO Back Office');
42    }
43
44    public function getDescription()
45    {
46        // phpcs:disable
47        return __('Create items, manage item and test banks, organize cohorts and deliveries, prepare reports, set up workflows.');
48        //phpcs:enable
49    }
50
51    public function getUrl()
52    {
53        return _url("index", "Main", "tao");
54    }
55}