2023-06-01 15:02:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Mailgateway;
|
|
|
|
|
|
|
|
use App\Mailgateway\Actions\IndexAction;
|
2024-08-01 10:25:48 +02:00
|
|
|
use App\Setting\Contracts\Viewable;
|
2023-06-01 15:02:35 +02:00
|
|
|
use App\Setting\LocalSettings;
|
|
|
|
|
2024-08-01 10:25:48 +02:00
|
|
|
class MailgatewaySettings extends LocalSettings implements Viewable
|
2023-06-01 15:02:35 +02:00
|
|
|
{
|
|
|
|
public static function group(): string
|
|
|
|
{
|
|
|
|
return 'mailgateway';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function slug(): string
|
|
|
|
{
|
|
|
|
return 'mailgateway';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function indexAction(): string
|
|
|
|
{
|
|
|
|
return IndexAction::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function title(): string
|
|
|
|
{
|
|
|
|
return 'E-Mail-Verbindungen';
|
|
|
|
}
|
|
|
|
}
|