-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.tpl.php
More file actions
30 lines (27 loc) · 823 Bytes
/
Copy pathConfig.tpl.php
File metadata and controls
30 lines (27 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Class Config holds the configuration ofthis ebsite
*
* @author Mario Kellner <mario.kellner@studmail.w-ha.de>
* @author Jan Markus Momper <jan-markus.momper@studmail.w-hs.de>
* @author Philipp Miller <philipp.miller@studmail.w-hs.de>
* @author Mark Friedrich <mark.friedrich@studmail.w-hs.de>
*/
class Config
{
public static $databaseSettings = [
'host' => 'guessandwin.gamer-point.com',
'user' => 'guessandwinTeam',
'password' => '***',
'database' => 'em2016'
];
public static $smtpSettings = [
'host' => 'smtp.web.de',
'user' => 'whstippspiel@web.de',
'email' => 'whstippspiel@web.de',
'emailname' => 'WHS Tippspiel',
'password' => '***',
];
}
define('ROOT_DIR', __DIR__);
define('DS', DIRECTORY_SEPARATOR);