Added section to Advanced Config
This commit is contained in:
parent
29a3c5ad2e
commit
fd611155f9
|
@ -2,4 +2,16 @@
|
|||
<html lang="{{ config('advanced-config.lang') }}">
|
||||
@else
|
||||
<html lang="en">
|
||||
@endif
|
||||
@endif
|
||||
|
||||
|
||||
{{-- Redirects to https if enabled in the advanced-config --}}
|
||||
@if(config('advanced-config.redirect_https') == 'true')
|
||||
@php
|
||||
if (! isset($_SERVER['HTTPS']) or $_SERVER['HTTPS'] == 'off' ) {
|
||||
$redirect_url = "https://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
||||
header("Location: $redirect_url");
|
||||
exit();
|
||||
}
|
||||
@endphp
|
||||
@endif
|
||||
|
|
|
@ -131,8 +131,8 @@ if($url1sb == '200' or $url2sb == '200') {
|
|||
@if(auth()->user()->role == 'admin')
|
||||
<ul class="list-unstyled components mb-5">
|
||||
<li class="active">
|
||||
<a href="#adminSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">Admin</a>
|
||||
<ul class="collapse list-unstyled" id="adminSubmenu">
|
||||
<a @if(config('advanced-config.expand_panel_admin_menu_permanently') != 'true') href="#adminSubmenu" data-toggle="collapse" aria-expanded="false" @endif class="dropdown-toggle">Admin</a>
|
||||
<ul class="@if(config('advanced-config.expand_panel_admin_menu_permanently') != 'true') collapse @endif list-unstyled" id="adminSubmenu">
|
||||
<li>
|
||||
<a href="{{ url('env-editor') }}">Config</a>
|
||||
</li>
|
||||
|
|
|
@ -111,6 +111,28 @@ exit(); ?>
|
|||
if(EnvEditor::keyExists('CUSTOM_META_TAGS')){ /* Do nothing if key already exists */
|
||||
} else {EnvEditor::addKey('CUSTOM_META_TAGS', 'false');}
|
||||
|
||||
if (!config()->has('advanced-config.expand_panel_admin_menu_permanently') and !config()->has('advanced-config.redirect_https')) {
|
||||
|
||||
function getStringBetween($string, $start, $end) {
|
||||
$lastStartIndex = strrpos($string, $start);
|
||||
$lastEndIndex = strrpos($string, $end);
|
||||
|
||||
$substringStartIndex = $lastStartIndex + strlen($start);
|
||||
$substringSize = $lastStartIndex - $lastEndIndex - 1;
|
||||
|
||||
return substr($string, $substringStartIndex, $substringSize);
|
||||
}
|
||||
|
||||
$subject = file_get_contents('config/advanced-config.php');
|
||||
$search = ")";
|
||||
$replace = "),";
|
||||
|
||||
file_put_contents('config/advanced-config.php', str_replace('),,', '),', strrev(implode(strrev($replace), explode(strrev($search), strrev($subject), 2)))));
|
||||
|
||||
$replace = "];";
|
||||
file_put_contents('config/advanced-config.php', str_replace($replace, file_get_contents('storage/templates/advanced-config-update-1.php'), file_get_contents('config/advanced-config.php')));
|
||||
}
|
||||
|
||||
echo "<meta http-equiv=\"refresh\" content=\"0; " . url()->current() . "?success\" />";
|
||||
?>
|
||||
@endif
|
||||
|
|
|
@ -67,7 +67,7 @@ Route::get('/theme/@{littlelink}', [UserController::class, 'theme'])->name('them
|
|||
Route::group([
|
||||
'middleware' => env('REGISTER_AUTH'),
|
||||
], function () {
|
||||
# URL::forceScheme('https'); # uncomment to force https
|
||||
if(config('advanced-config.redirect_https') == 'true'){URL::forceScheme('https');}
|
||||
Route::get('/studio/index', [UserController::class, 'index'])->name('studioIndex');
|
||||
Route::get('/studio/add-link', [UserController::class, 'showButtons'])->name('showButtons');
|
||||
Route::post('/studio/add-link', [UserController::class, 'addLink'])->name('addLink');
|
||||
|
@ -91,7 +91,7 @@ Route::post('/studio/profile', [UserController::class, 'editProfile'])->name('ed
|
|||
Route::group([
|
||||
'middleware' => 'admin',
|
||||
], function () {
|
||||
# URL::forceScheme('https'); # uncomment to force https
|
||||
if(config('advanced-config.redirect_https') == 'true'){URL::forceScheme('https');}
|
||||
Route::get('/panel/index', [AdminController::class, 'index'])->name('panelIndex');
|
||||
Route::get('/panel/users/{type}', [AdminController::class, 'users'])->name('showUsers');
|
||||
Route::post('/panel/users/{name?}', [AdminController::class, 'searchUser'])->name('searchUser');
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Extra Settings
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
*/
|
||||
|
||||
'expand_panel_admin_menu_permanently' => 'false',
|
||||
|
||||
'redirect_https' => 'false',
|
||||
|
||||
];
|
Loading…
Reference in New Issue