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-07-04 21:01:14 +02:00
|
|
|
use App\Prevention\Actions\PreventionIndexAction;
|
|
|
|
use App\Setting\Contracts\Indexable;
|
|
|
|
use App\Setting\LocalSettings;
|
|
|
|
|
|
|
|
class PreventionSettings extends LocalSettings implements Indexable
|
|
|
|
{
|
|
|
|
|
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';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function indexAction(): string
|
|
|
|
{
|
|
|
|
return PreventionIndexAction::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function title(): string
|
|
|
|
{
|
|
|
|
return 'Prävention';
|
|
|
|
}
|
|
|
|
}
|