forked from pelican-dev/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59b50ca
commit 1b9b92a
Showing
9 changed files
with
36 additions
and
17 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
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 |
---|---|---|
@@ -1,11 +1,4 @@ | ||
<?php | ||
/** | ||
* Pterodactyl - Panel | ||
* Copyright (c) 2015 - 2017 Dane Everitt <[email protected]>. | ||
* | ||
* This software is licensed under the terms of the MIT license. | ||
* https://opensource.org/licenses/MIT | ||
*/ | ||
|
||
return [ | ||
'location' => [ | ||
|
@@ -74,6 +67,7 @@ | |
'try_again' => 'Go back and try again?', | ||
], | ||
'app' => [ | ||
'settings' => 'Enable UI based settings editor?', | ||
'author' => 'Egg Author Email', | ||
'author_help' => 'Provide the email address that eggs exported by this Panel should be from. This should be a valid email address.', | ||
'app_url_help' => 'The application URL MUST begin with https:// or http:// depending on if you are using SSL or not. If you do not include the scheme your emails and other content will link to the wrong location.', | ||
|
3 changes: 3 additions & 0 deletions
3
resources/themes/pterodactyl/partials/admin/settings/nav.blade.php
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
11 changes: 11 additions & 0 deletions
11
resources/themes/pterodactyl/partials/admin/settings/notice.blade.php
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,11 @@ | ||
@section('settings::notice') | ||
@if(config('pterodactyl.load_environment_only', false)) | ||
<div class="row"> | ||
<div class="col-xs-12"> | ||
<div class="alert alert-danger"> | ||
Your Panel is currently configured to read settings from the environment only. You will need to set <code>LOAD_ENVIRONMENT_ONLY=false</code> in your environment file in order to load settings dynamically. | ||
</div> | ||
</div> | ||
</div> | ||
@endif | ||
@endsection |