WP Users list

- migration for filters & segment_filter tables
- models for new tables
- update of Listing JSX to allow for conditional display of item actions
This commit is contained in:
Jonathan Labreuille
2015-11-24 17:12:14 +01:00
parent ebca4257a6
commit 6dd8270bec
11 changed files with 280 additions and 21 deletions

View File

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