- Implements post-processing filter during rendering

This commit is contained in:
Vlad
2016-04-19 20:58:08 -04:00
parent ed09c3e5d4
commit 15cf087d40
5 changed files with 97 additions and 2 deletions

View File

@ -0,0 +1,12 @@
<?php
namespace MailPoet\Models;
if(!defined('ABSPATH')) exit;
class StatisticsClicks extends Model {
public static $_table = MP_STATISTICS_CLICKS_TABLE;
function __construct() {
parent::__construct();
}
}