1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace TechWilk\Rota; |
4
|
|
|
|
5
|
|
View Code Duplication |
function legacyRouteAddUser($request, $response, $args) |
|
|
|
|
6
|
|
|
{ |
7
|
|
|
if (!empty($args['action']) && $args['action'] == 'edit') { |
8
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('user-me')); |
|
|
|
|
9
|
|
|
} |
10
|
|
|
|
11
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('user-new')); |
12
|
|
|
} |
13
|
|
|
|
14
|
|
|
$app->get('/old/addUser.php', 'legacyRouteAddUser'); |
15
|
|
|
$app->get('/addUser.php', 'legacyRouteAddUser'); |
16
|
|
|
|
17
|
|
|
function legacyRouteUsers($request, $response, $args) |
|
|
|
|
18
|
|
|
{ |
19
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('users')); |
|
|
|
|
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
$app->get('/old/users.php', 'legacyRouteUsers'); |
23
|
|
|
$app->get('/users.php', 'legacyRouteUsers'); |
24
|
|
|
|
25
|
|
|
function legacyRouteCalendarTokens($request, $response, $args) |
|
|
|
|
26
|
|
|
{ |
27
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('user-calendars')); |
|
|
|
|
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
$app->get('/old/calendarTokens.php', 'legacyRouteAddTokens'); |
31
|
|
|
$app->get('/calendarTokens.php', 'legacyRouteAddTokens'); |
32
|
|
|
|
33
|
|
View Code Duplication |
function legacyRoutePassword($request, $response, $args) |
|
|
|
|
34
|
|
|
{ |
35
|
|
|
if (!empty($args['id'])) { |
36
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('user-password')); |
|
|
|
|
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('user-me')); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
$app->get('/old/editPassword.php', 'legacyRoutePassword'); |
43
|
|
|
$app->get('/editPassword.php', 'legacyRoutePassword'); |
44
|
|
|
|
45
|
|
|
function legacyRouteEvent($request, $response, $args) |
|
|
|
|
46
|
|
|
{ |
47
|
|
|
$eventId = (int) $args['id']; |
48
|
|
|
|
49
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('event', ['id' => $eventId])); |
|
|
|
|
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
$app->get('/old/event.php', 'legacyRouteEvent'); |
53
|
|
|
$app->get('/event.php', 'legacyRouteEvent'); |
54
|
|
|
|
55
|
|
|
function legacyRouteLogin($request, $response, $args) |
|
|
|
|
56
|
|
|
{ |
57
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('login')); |
|
|
|
|
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
$app->get('/old/login.php', 'legacyRouteLogin'); |
61
|
|
|
$app->get('/login.php', 'legacyRouteLogin'); |
62
|
|
|
|
63
|
|
|
function legacyRouteLogout($request, $response, $args) |
|
|
|
|
64
|
|
|
{ |
65
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('logout')); |
|
|
|
|
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
$app->get('/old/logout.php', 'legacyRouteLogout'); |
69
|
|
|
$app->get('/logout.php', 'legacyRouteLogout'); |
70
|
|
|
|
71
|
|
|
function legacyRouteResources($request, $response, $args) |
|
|
|
|
72
|
|
|
{ |
73
|
|
|
return $response->withStatus(308)->withHeader('Location', $this->router->pathFor('resources')); |
|
|
|
|
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
$app->get('/old/resources.php', 'legacyRouteResources'); |
77
|
|
|
$app->get('/resources.php', 'legacyRouteResources'); |
78
|
|
|
|
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.