Files
piratepoet/lib/Models/NewsletterLink.php
2020-01-14 15:22:42 +01:00

16 lines
355 B
PHP

<?php
namespace MailPoet\Models;
/**
* @property int $newsletterId
* @property int $queueId
* @property string $url
* @property string $hash
* @property int|null $clicksCount
*/
class NewsletterLink extends Model {
public static $_table = MP_NEWSLETTER_LINKS_TABLE;
const UNSUBSCRIBE_LINK_SHORT_CODE = '[link:subscription_unsubscribe_url]';
}