1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
namespace AutomateWoo\Rules;
defined( 'ABSPATH' ) || exit;
/** * Class Subscription_Coupon_Count * * @since 4.5.0 * @package AutomateWoo\Rules */ class Subscription_Coupon_Count extends Order_Coupon_Count {
/** * Data item for the rule. * * @var string */ public $data_item = 'subscription';
/** * Init the rule. */ public function init() { $this->title = __( 'Subscription - Coupon Count', 'automatewoo' ); } }
|