Initial commit

This commit is contained in:
2025-07-12 16:45:24 +02:00
commit 69903c22fa
178 changed files with 27248 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php
namespace Grav\Plugin\Listmonk\Exceptions;
class ListmonkClientException extends ListmonkException
{
}

View File

@@ -0,0 +1,8 @@
<?php
namespace Grav\Plugin\Listmonk\Exceptions;
class ListmonkException extends \RuntimeException
{
}

View File

@@ -0,0 +1,15 @@
<?php
namespace Grav\Plugin\Listmonk\Model;
final class NewsletterStatus
{
public static function getNewsletterStatusList(): array
{
return [
'enabled' => 'Enabled',
'disabled' => 'Disabled',
'blocklist' => 'Blocklisted',
];
}
}