Bootstrap 5 continued + bugfixes

This commit is contained in:
Joey Kimsey
2024-12-15 17:19:08 -05:00
parent de6d608857
commit 2220c6cda3
27 changed files with 198 additions and 148 deletions

View File

@ -77,7 +77,7 @@ class TheTempusProject extends Bedrock {
];
public $admin_links = [
[
'text' => '<i class="fa fa-fw fa-home"></i> Home',
'text' => '<i class="fa fa-fw fa-home"></i> Dashboard',
'url' => '{ROOT_URL}admin/index',
],
[
@ -89,19 +89,19 @@ class TheTempusProject extends Bedrock {
'url' => '{ROOT_URL}admin/users',
],
[
'text' => '<i class="fa fa-fw fa-group"></i> Groups',
'text' => '<i class="fa fa-fw fa-user-group"></i> Groups',
'url' => '{ROOT_URL}admin/groups',
],
[
'text' => '<i class="fa fa-fw fa-reply-all"></i> Contact',
'text' => '<i class="fa fa-fw fa-phone"></i> Contact',
'url' => '{ROOT_URL}admin/contact',
],
[
'text' => '<i class="fa fa-fw fa-reply-all"></i> Tokens',
'text' => '<i class="fa fa-fw fa-shield-halved"></i> Tokens',
'url' => '{ROOT_URL}admin/tokens',
],
[
'text' => '<i class="fa fa-fw fa-arrows-v"></i> Modules',
'text' => '<i class="fa fa-fw fa-arrow-down"></i> Modules',
'url' => [
[
'text' => '<i class="fa fa-fw fa-database"></i> Plugins',
@ -114,7 +114,7 @@ class TheTempusProject extends Bedrock {
],
],
[
'text' => '<i class="fa fa-fw fa-arrows-v"></i> Logs',
'text' => '<i class="fa fa-fw fa-arrow-down"></i> Logs',
'url' => [
[
'text' => '<i class="fa fa-fw fa-file"></i> Logs',
@ -293,6 +293,22 @@ class TheTempusProject extends Bedrock {
"default" => 5
]
],
"uploads" => [
"images" => [
"type"=> "radio",
"pretty"=> "Upload Images Enabled",
"default"=> true,
"protected"=> true,
"value"=> true,
],
"maxImageSize"=> [
"type" => "text",
"pretty" => "Maximum size for image uploads",
"default" => 500000,
"protected" => true,
"value" => 500000,
]
],
"database" => [
"dbEnabled" => [
"type" => "radio",