- migration for filters & segment_filter tables - models for new tables - update of Listing JSX to allow for conditional display of item actions
13 lines
213 B
PHP
13 lines
213 B
PHP
<?php
|
|
namespace MailPoet\Models;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
class SegmentFilter extends Model {
|
|
public static $_table = MP_SEGMENT_FILTER_TABLE;
|
|
|
|
function __construct() {
|
|
parent::__construct();
|
|
}
|
|
}
|