You've already forked grav-plugin-listmonk
16 lines
295 B
PHP
16 lines
295 B
PHP
<?php
|
|
|
|
namespace Grav\Plugin\Listmonk\Model;
|
|
|
|
final class NewsletterStatus
|
|
{
|
|
public static function getNewsletterStatusList(): array
|
|
{
|
|
return [
|
|
'enabled' => 'Enabled',
|
|
'disabled' => 'Disabled',
|
|
'blocklist' => 'Blocklisted',
|
|
];
|
|
}
|
|
}
|