14 lines
258 B
PHP
14 lines
258 B
PHP
<?php
|
|
namespace MailPoet\Models;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
class NewsletterLink extends Model {
|
|
public static $_table = MP_NEWSLETTER_LINKS_TABLE;
|
|
|
|
static function getByHash($hash) {
|
|
return parent::where('hash', $hash)
|
|
->findOne();
|
|
}
|
|
}
|