- Adds queue management and supervisor. Issue #227

This commit is contained in:
MrCasual
2015-11-20 16:18:58 -05:00
parent 556a170903
commit 25b51d0446
7 changed files with 199 additions and 17 deletions

12
lib/Models/Queue.php Normal file
View File

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