-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257 from va-net/v1-0-2
v1.0.2
- Loading branch information
Showing
35 changed files
with
178 additions
and
799 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
/* | ||
Flare, a fully featured and easy to use crew centre, designed for Infinite Flight. | ||
Copyright (C) 2020 Lucas Rebato | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
require_once 'core/init.php'; | ||
|
||
if (Input::get('page') === 'usermanage'): | ||
Redirect::to('/admin/users.php'); | ||
elseif (Input::get('page') === 'staffmanage'): | ||
Redirect::to('/admin/staff.php'); | ||
elseif (Input::get('page') === 'site'): | ||
Redirect::to('/admin/site.php'); | ||
elseif (Input::get('page') === 'recruitment'): | ||
Redirect::to('/admin/recruitment.php'); | ||
elseif (Input::get('page') === 'pirepmanage'): | ||
Redirect::to('/admin/pireps.php'); | ||
elseif (Input::get('page') === 'multimanage'): | ||
Redirect::to('/admin/multipliers.php'); | ||
elseif (Input::get('page') === 'newsmanage'): | ||
Redirect::to('/admin/news.php'); | ||
elseif (Input::get('page') === 'events'): | ||
Redirect::to('/admin/events.php'); | ||
elseif (Input::get('page') === 'statsviewing'): | ||
Redirect::to('/admin/stats.php'); | ||
elseif (Input::get('page') === 'opsmanage'): | ||
Redirect::to('/admin/operations.php?section='.Input::get('section')); | ||
elseif (Input::get('page') === 'codeshares'): | ||
Redirect::to('/admin/codeshares.php'); | ||
elseif (Input::get('page') === 'pluginmanage'): | ||
Redirect::to('/admin/plugins.php'); | ||
else: | ||
Redirect::to('/home.php'); | ||
endif; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,10 @@ | |
} | ||
} | ||
|
||
table { | ||
text-align: center; | ||
} | ||
|
||
* { | ||
font-family: 'Rubik', sans-serif; | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.