*/ class Discount extends Notice { use User_Data; public $color = 'none'; public $coupon_code = 'LITEFLASH25'; /** * Construct method * * @author Jewel Theme */ public function __construct() { parent::__construct(); if (empty(get_option('wpadminify_notice_discount_code'))) { update_option('wpadminify_notice_discount_code', $this->coupon_code); } add_action('admin_enqueue_scripts', [$this, 'discount_coupon_scripts'], 999); } /** * Notice Content * * @author Jewel Theme */ public function notice_content() { ?>

Notice Content, Coupon Code: coupon_code); ?>

Flash Sale

Notice Content Notice Content Notice Content Notice Content Notice Content Notice Content Notice Content Notice Content

<?php esc_attr_e('20% Discount Coupon', 'adminify'); ?>
*/ public function intervals() { return array(5, 4, 10, 20, 15, 25, 30, 45, 15, 30, 10, 6); } } }