Migrated from SVN to GIT (history was containing passwords, so i didn't converted it)
[mirrors/SokoMan.git] / Sklad_LMS-fake.class.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 class Sklad_LMS_common {
21 function get_authorized_user_id($die=true) {
22 if(isset($this->authorized_user_id)) return $this->authorized_user_id;
23 if($die) die('No user authorized!!!');
24 return false;
25 }
26 }
27
28 class Sklad_LMS extends Sklad_LMS_common { //FAKE!
29 function check_auth($user, $pass) {
30 $users = array( //You can specify multiple users in this array
31 DB_USER => DB_PASS
32 );
33 if(isset($GLOBALS['fake_lms_users'])) $users = $GLOBALS['fake_lms_users'] + $users;
34 $this->authorized_user_id=23; //LMS user_id
35 return (isset($users[$user]) && ($users[$user] == $pass));
36 }
37 }
This page took 0.252356 seconds and 4 git commands to generate.