123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- namespace App\Settings;
- use Spatie\LaravelSettings\Settings;
- class WebsiteSettings extends Settings
- {
- public bool $show_imprint;
- public bool $show_privacy;
- public bool $show_tos;
- public bool $useful_links_enabled;
- public bool $enable_login_logo;
- public ?string $seo_title;
- public ?string $seo_description;
- public bool $motd_enabled;
- public ?string $motd_message;
- public static function group(): string
- {
- return 'website';
- }
- /**
- * Summary of validations array
- * @return array<string, string>
- */
- public static function getValidations()
- {
- return [
- 'motd_enabled' => 'nullable|string',
- 'motd_message' => 'nullable|string',
- 'show_imprint' => 'nullable|string',
- 'show_privacy' => 'nullable|string',
- 'show_tos' => 'nullable|string',
- 'useful_links_enabled' => 'nullable|string',
- 'enable_login_logo' => 'nullable|string',
- 'seo_title' => 'nullable|string',
- 'seo_description' => 'nullable|string',
- ];
- }
- /**
- * Summary of optionTypes
- * Only used for the settings page
- * @return array<array<'type'|'label'|'description'|'options', string|array<string, string>>>
- */
- public static function getOptionInputData()
- {
- return [
- 'category_icon' => 'fas fa-globe',
- 'motd_enabled' => [
- 'label' => 'Enable MOTD',
- 'type' => 'boolean',
- 'description' => 'Enable the MOTD (Message of the day) on the dashboard.',
- ],
- 'motd_message' => [
- 'label' => 'MOTD Message',
- 'type' => 'textarea',
- 'description' => 'The message of the day.',
- ],
- 'show_imprint' => [
- 'label' => 'Show Imprint',
- 'type' => 'boolean',
- 'description' => 'Show the imprint on the website.',
- ],
- 'show_privacy' => [
- 'label' => 'Show Privacy',
- 'type' => 'boolean',
- 'description' => 'Show the privacy on the website.',
- ],
- 'show_tos' => [
- 'label' => 'Show TOS',
- 'type' => 'boolean',
- 'description' => 'Show the TOS on the website.',
- ],
- 'useful_links_enabled' => [
- 'label' => 'Enable Useful Links',
- 'type' => 'boolean',
- 'description' => 'Enable the useful links on the dashboard.',
- ],
- 'seo_title' => [
- 'label' => 'SEO Title',
- 'type' => 'string',
- 'description' => 'The title of the website.',
- ],
- 'seo_description' => [
- 'label' => 'SEO Description',
- 'type' => 'string',
- 'description' => 'The description of the website.',
- ],
- 'enable_login_logo' => [
- 'label' => 'Enable Login Logo',
- 'type' => 'boolean',
- 'description' => 'Enable the logo on the login page.',
- ],
- ];
- }
- }
|