Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
core_kernel_impl_Api
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 2
12
0.00% covered (danger)
0.00%
0 / 1
 logIn
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
6
 logOut
0.00% covered (danger)
0.00%
0 / 3
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) 2002-2008 (original work) Public Research Centre Henri Tudor & University of Luxembourg
19 *                         (under the project TAO & TAO2);
20 *               2008-2010 (update and modification) Deutsche Institut für Internationale Pädagogische Forschung
21 *                         (under the project TAO-TRANSFER);
22 *               2009-2012 (update and modification) Public Research Centre Henri Tudor
23 *                         (under the project TAO-SUSTAIN & TAO-DEV);
24 *               2017  (update and modification) Open Assessment Technologies SA (under the project TAO-PRODUCT);
25 */
26
27use oat\tao\model\TaoOntology;
28
29/**
30 * session has been set public because when implementing an interface, the son
31 * this class may not read this attribute otherwise in php 5.2
32 *
33 * @access public
34 * @author Bertrand Chevrier, <bertrand.chevrier@tudor.lu>
35 * @package generis
36
37 */
38class core_kernel_impl_Api implements core_kernel_api_Api
39{
40    // --- ASSOCIATIONS ---
41
42
43    // --- ATTRIBUTES ---
44
45    // --- OPERATIONS ---
46
47    /**
48     * Short description of method logIn
49     *
50     * @access public
51     * @author Bertrand Chevrier, <bertrand.chevrier@tudor.lu>
52     * @param  string login
53     * @param  string password
54     * @param  string module
55     * @param  boolean role
56     * @return boolean
57     */
58    public function logIn($login, $password, $module, $role)
59    {
60        $returnValue = (bool) false;
61
62
63        if ($role === true) {
64            $role = new core_kernel_classes_Resource(TaoOntology::PROPERTY_INSTANCE_ROLE_GLOBALMANAGER);
65        }
66
67        core_kernel_users_Service::singleton()->login($login, $password, $role);
68
69
70        return (bool) $returnValue;
71    }
72
73    /**
74     * Short description of method logOut
75     *
76     * @access public
77     * @author Bertrand Chevrier, <bertrand.chevrier@tudor.lu>
78     * @return boolean
79     */
80    public function logOut()
81    {
82        $returnValue = (bool) false;
83
84
85        core_kernel_users_Service::singleton()->logout();
86
87
88        return (bool) $returnValue;
89    }
90}