2025-07-12 16:45:24 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Grav\Plugin\Listmonk\Model;
|
|
|
|
|
|
|
|
|
|
final class NewsletterStatus
|
|
|
|
|
{
|
|
|
|
|
public static function getNewsletterStatusList(): array
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'enabled' => 'Enabled',
|
|
|
|
|
'disabled' => 'Disabled',
|
|
|
|
|
'blocklist' => 'Blocklisted',
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|