2024-07-04 21:01:14 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Prevention;
|
|
|
|
|
2024-07-04 23:54:37 +02:00
|
|
|
use App\Lib\Editor\EditorData;
|
2024-08-01 10:25:48 +02:00
|
|
|
use App\Setting\Contracts\Viewable;
|
2024-07-04 21:01:14 +02:00
|
|
|
use App\Setting\LocalSettings;
|
|
|
|
|
2024-08-01 10:25:48 +02:00
|
|
|
class PreventionSettings extends LocalSettings implements Viewable
|
2024-07-04 21:01:14 +02:00
|
|
|
{
|
|
|
|
|
2024-07-04 23:54:37 +02:00
|
|
|
public EditorData $formmail;
|
2024-07-04 21:01:14 +02:00
|
|
|
|
|
|
|
public static function group(): string
|
|
|
|
{
|
|
|
|
return 'prevention';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function slug(): string
|
|
|
|
{
|
|
|
|
return 'prevention';
|
|
|
|
}
|
|
|
|
|
2024-08-01 11:17:49 +02:00
|
|
|
public static function title(): string
|
2024-07-04 21:01:14 +02:00
|
|
|
{
|
2024-08-01 11:17:49 +02:00
|
|
|
return 'Prävention';
|
2024-07-04 21:01:14 +02:00
|
|
|
}
|
|
|
|
|
2024-08-01 11:17:49 +02:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
public function viewData(): array
|
2024-07-04 21:01:14 +02:00
|
|
|
{
|
2024-08-01 11:17:49 +02:00
|
|
|
return [];
|
2024-07-04 21:01:14 +02:00
|
|
|
}
|
|
|
|
}
|