1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* NavController.php |
4
|
|
|
* Copyright (c) 2020 [email protected] |
5
|
|
|
* |
6
|
|
|
* This file is part of the Firefly III CSV importer |
7
|
|
|
* (https://github.com/firefly-iii/csv-importer). |
8
|
|
|
* |
9
|
|
|
* This program is free software: you can redistribute it and/or modify |
10
|
|
|
* it under the terms of the GNU Affero General Public License as |
11
|
|
|
* published by the Free Software Foundation, either version 3 of the |
12
|
|
|
* License, or (at your option) any later version. |
13
|
|
|
* |
14
|
|
|
* This program is distributed in the hope that it will be useful, |
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17
|
|
|
* GNU Affero General Public License for more details. |
18
|
|
|
* |
19
|
|
|
* You should have received a copy of the GNU Affero General Public License |
20
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
21
|
|
|
*/ |
22
|
|
|
|
23
|
|
|
namespace App\Http\Controllers; |
24
|
|
|
|
25
|
|
|
use App\Services\Session\Constants; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* Class NavController |
29
|
|
|
*/ |
30
|
|
|
class NavController extends Controller |
31
|
|
|
{ |
32
|
|
|
/** |
33
|
|
|
* Return back to upload. |
34
|
|
|
*/ |
35
|
|
|
public function toConfig() |
36
|
|
|
{ |
37
|
|
|
session()->forget(Constants::CONFIG_COMPLETE_INDICATOR); |
38
|
|
|
|
39
|
|
|
return redirect(route('import.configure.index') . '?overruleskip=true'); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector |
44
|
|
|
*/ |
45
|
|
|
public function toRoles() |
46
|
|
|
{ |
47
|
|
|
session()->forget(Constants::ROLES_COMPLETE_INDICATOR); |
48
|
|
|
return redirect(route('import.roles.index')); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* Return back to index. Needs no session updates. |
53
|
|
|
*/ |
54
|
|
|
public function toStart() |
55
|
|
|
{ |
56
|
|
|
return redirect(route('index')); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* Return back to upload. |
61
|
|
|
*/ |
62
|
|
|
public function toUpload() |
63
|
|
|
{ |
64
|
|
|
session()->forget(Constants::HAS_UPLOAD); |
65
|
|
|
|
66
|
|
|
return redirect(route('import.start')); |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
} |
70
|
|
|
|