-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (31 loc) · 895 Bytes
/
index.php
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
31
32
33
34
35
36
37
38
39
<?php
require 'core/bootstrap.php';
$routes = [
/* Hauptseiten */
'' => 'GGamesController@index',
'home' => 'GGamesController@index',
'store' => 'GGamesController@store',
/* Spiele bearbeiten */
'addGame' => 'GGamesController@addGame',
'deleteGame' => 'GGamesController@deleteGame',
'editGame' => 'GGamesController@editGame',
/* Login */
'login' => 'GGamesController@login',
'config' => 'GGamesController@config',
'register' => 'GGamesController@register',
'logout' => 'GGamesController@logout',
/* Spiel kaufen */
'buyGame' => 'GGamesController@buyGame',
/* Spiel zurückgeben */
'returnGame' => 'GGamesController@returnGame',
/* Konto */
'konto' => 'GGamesController@konto',
'editKonto' => 'GGamesController@editKonto',
];
$db = [
'name' => 'ggames',
'username' => 'root',
'password' => '',
];
$router = new Router($routes);
$router->run($_GET['url'] ?? '');