Merge branch 'main' into thetempusproject-com

This commit is contained in:
Joey Kimsey
2025-01-30 13:25:16 -05:00
69 changed files with 527 additions and 949 deletions

View File

@ -100,6 +100,10 @@ class TheTempusProject extends Bedrock {
'text' => '<i class="fa fa-fw fa-shield-halved"></i> Tokens',
'url' => '{ROOT_URL}admin/tokens',
],
[
'text' => '<i class="fa-solid fa-image"></i> Images',
'url' => '{ROOT_URL}admin/images',
],
[
'text' => '<i class="fa fa-fw fa-arrow-down"></i> Modules',
'url' => [
@ -143,6 +147,7 @@ class TheTempusProject extends Bedrock {
[
'text' => 'Home',
'url' => '{ROOT_URL}home/index',
'filter' => 'notloggedin',
],
[
'text' => 'Libraries',
@ -299,6 +304,11 @@ class TheTempusProject extends Bedrock {
"pretty" => "Enable CSRF Token for all forms.",
"default" => true
],
"registrationEnabled" => [
"type" => "radio",
"pretty" => "Allow new users to register an account.",
"default" => true
],
"loginLimit" => [
"type" => "text",
"pretty" => "Maximum Login Attempts per hour",
@ -312,17 +322,15 @@ class TheTempusProject extends Bedrock {
],
"uploads" => [
"images" => [
"type"=> "radio",
"pretty"=> "Upload Images Enabled",
"default"=> true,
"protected"=> true,
"value"=> true,
"type" => "radio",
"pretty" => "Upload Images Enabled",
"default" => true,
"value" => true,
],
"maxImageSize"=> [
"type" => "text",
"pretty" => "Maximum size for image uploads",
"default" => 500000,
"protected" => true,
"value" => 500000,
]
],