9739aa3ed2f170f55085e2e4c969543224eeed2d
[mirrors/SokoMan.git] / lib / Sklad_Auth.class / internal.php
1 <?php
2 /*
3 * SkladovySystem - Storage management system compatible with LMS
4 * Copyright (C) 2011 Thomas Mudrunka
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /**
21 * Trida predstira spojeni s LMS a podvrhuje smysluplna data pro testovaci ucely
22 *
23 * @package Sklad_Auth
24 * @author Tomas Mudrunka
25 */
26 class Sklad_Auth extends Sklad_Auth_common { //FAKE!
27 function check_auth($user, $pass) {
28 $users = array(
29 DB_USER => array(DB_PASS,0,0)
30 );
31 if(isset($GLOBALS['internal_auth_users'])) $users = $GLOBALS['internal_auth_users'] + $users;
32 if(isset($users[$user][0]) && ($users[$user][0] == $pass)) {
33 $this->user['name']=$user;
34 $this->user['id']=$users[$user][1];
35 $this->user['gid']=$users[$user][2];
36 return true;
37 }
38 return false;
39 }
40 }
This page took 0.289382 seconds and 3 git commands to generate.