Change subscriber groups order
[MAILPOET-1973]
This commit is contained in:
committed by
Rostislav Wolný
parent
317db5cff7
commit
b76010ab2d
@@ -250,16 +250,16 @@ class Subscriber extends Model {
|
|||||||
'label' => WPFunctions::get()->__('Unsubscribed', 'mailpoet'),
|
'label' => WPFunctions::get()->__('Unsubscribed', 'mailpoet'),
|
||||||
'count' => self::filter(self::STATUS_UNSUBSCRIBED)->count()
|
'count' => self::filter(self::STATUS_UNSUBSCRIBED)->count()
|
||||||
),
|
),
|
||||||
array(
|
|
||||||
'name' => self::STATUS_BOUNCED,
|
|
||||||
'label' => WPFunctions::get()->__('Bounced', 'mailpoet'),
|
|
||||||
'count' => self::filter(self::STATUS_BOUNCED)->count()
|
|
||||||
),
|
|
||||||
array(
|
array(
|
||||||
'name' => self::STATUS_INACTIVE,
|
'name' => self::STATUS_INACTIVE,
|
||||||
'label' => WPFunctions::get()->__('Inactive', 'mailpoet'),
|
'label' => WPFunctions::get()->__('Inactive', 'mailpoet'),
|
||||||
'count' => self::filter(self::STATUS_INACTIVE)->count()
|
'count' => self::filter(self::STATUS_INACTIVE)->count()
|
||||||
),
|
),
|
||||||
|
array(
|
||||||
|
'name' => self::STATUS_BOUNCED,
|
||||||
|
'label' => WPFunctions::get()->__('Bounced', 'mailpoet'),
|
||||||
|
'count' => self::filter(self::STATUS_BOUNCED)->count()
|
||||||
|
),
|
||||||
array(
|
array(
|
||||||
'name' => 'trash',
|
'name' => 'trash',
|
||||||
'label' => WPFunctions::get()->__('Trash', 'mailpoet'),
|
'label' => WPFunctions::get()->__('Trash', 'mailpoet'),
|
||||||
|
Reference in New Issue
Block a user