1 | <?php |
||
26 | class AdministrationController extends Controller |
||
27 | { |
||
28 | /** |
||
29 | * Show general application stats. |
||
30 | * |
||
31 | * @param Tag $tag |
||
32 | * @param Project $project |
||
33 | * @param User $user |
||
34 | * |
||
35 | * @return \Illuminate\View\View |
||
36 | */ |
||
37 | 2 | public function getIndex(Tag $tag, Project $project, User $user) |
|
49 | |||
50 | /** |
||
51 | * Add new tag page. |
||
52 | * |
||
53 | * @param FormSettings $form |
||
54 | * |
||
55 | * @return \Illuminate\View\View |
||
56 | */ |
||
57 | 1 | public function getSettings(FormSettings $form) |
|
64 | |||
65 | /** |
||
66 | * To create new tag. |
||
67 | * |
||
68 | * @param FormRequest\Settings $request |
||
69 | * |
||
70 | * @return \Illuminate\Http\RedirectResponse |
||
71 | */ |
||
72 | 1 | public function postSettings(FormRequest\Settings $request) |
|
78 | |||
79 | /** |
||
80 | * Toggle site maintenance mode. |
||
81 | * |
||
82 | * @return \Illuminate\Http\RedirectResponse |
||
83 | */ |
||
84 | public function getChangeMaintenanceMode() |
||
96 | } |
||
97 |