/var/www/html_uk/wp-content/plugins/automatewoo/includes/Rules/Subscription_Coupons.php


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
29
30
<?php

namespace AutomateWoo\Rules;

defined'ABSPATH' ) || exit;

/**
 * Subscription_Coupons rule class.
 *
 * @since   4.5.0
 * @package AutomateWoo\Rules
 */
class Subscription_Coupons extends Order_Coupons {

    
/**
     * Data item for the rule.
     *
     * @var string
     */
    
public $data_item 'subscription';

    
/**
     * Init the rule.
     */
    
public function init() {
        
parent::init();

        
$this->title __'Subscription - Coupons''automatewoo' );
    }
}