# shopbuilder/3.2.6/app/Abstracts/Discount.php

ShopBuilder – WooCommerce Builder For Elementor, version 3.2.6. 225 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/3.2.6/code/app/Abstracts/Discount.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/3.2.6/raw/app/Abstracts/Discount.php
- Modified: 2026-04-12T06:42:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shopbuilder/3.2.6/code/app/Abstracts/Discount.php#L10-L20`.

```php
<?php
/**
 * Special Offer.
 *
 * @package RadiusTheme\SB
 */

namespace RadiusTheme\SB\Abstracts;

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}

/**
 * Black Friday Offer.
 */
abstract class Discount {
	/**
	 * @var array
	 */
	protected $options = [];

	/**
	 * Class Constructor.
	 *
	 * @return void
	 */
	public function __construct() {
		add_action( 'admin_init', [ $this, 'show_notice' ] );
	}

	/**
	 * @return array
	 */
	abstract public function the_options(): array;

	/**
	 * @return void
	 */
	public function show_notice() {
		$defaults      = [
			'download_link'  => rtsb()->pro_version_link(),
			'global_check'   => false,
			'plugin_name'    => 'ShopBuilder Pro',
			'image_url'      => rtsb()->get_assets_uri( 'images/shopbuilder-100x100.svg' ),
			'option_name'    => '',
			'start_date'     => '',
			'end_date'       => '',
			'notice_for'     => 'Cyber Monday Deal!!',
			'notice_message' => '',
		];
		$options       = apply_filters( 'rtsb_offer_notice', $this->the_options() );
		$this->options = wp_parse_args( $options, $defaults );
		$current       = time();
		$start         = strtotime( $this->options['start_date'] );
		$end           = strtotime( $this->options['end_date'] );

		$global = $this->options['global_check'] ?? 'rtsb__notice';
		// Black Friday Notice.
		if ( $start <= $current && $current <= $end ) {
			if ( get_option( $this->options['option_name'] ) != '1' ) {
				if ( ! isset( $GLOBALS[ $global ] ) ) {
					$GLOBALS[ $global ] = $global;
					$this->offer_notice();
				}
			}
		}
	}

	/**
	 * Black Friday Notice.
	 *
	 * @return void
	 */
	private function offer_notice() {
		add_action(
			'admin_enqueue_scripts',
			function () {
				wp_enqueue_script( 'jquery' );
			}
		);

		add_action(
			'admin_notices',
			function () {
				?>
				<style>
					.notice.rtsb-offer-notice {
						--e-button-context-color: #5d3dfd;
						--e-button-context-color-dark: #0047FF;
						--e-button-context-tint: rgb(75 47 157/4%);
						--e-focus-color: rgb(75 47 157/40%);
						display:grid;
						grid-template-columns: 100px auto;
						padding-top: 15px;
						padding-bottom: 12px;
						column-gap: 15px;
					}

					.rtsb-offer-notice img {
						grid-row: 1 / 4;
						align-self: center;
						justify-self: center;
					}

					.rtsb-offer-notice h3,
					.rtsb-offer-notice p {
						margin: 0 !important;
					}

					.rtsb-offer-notice .notice-text {
						margin: 0 0 2px;
						padding: 5px 0;
						max-width: 100%;
						font-size: 14px;
					}

					.rtsb-offer-notice .button-primary,
					.rtsb-offer-notice .button-dismiss {
						display: inline-block;
						border: 0;
						border-radius: 3px;
						background: var(--e-button-context-color-dark);
						color: #fff;
						vertical-align: middle;
						text-align: center;
						text-decoration: none;
						white-space: nowrap;
						margin-right: 5px;
						transition: all 0.3s;
					}

					.rtsb-offer-notice .button-primary:hover,
					.rtsb-offer-notice .button-dismiss:hover {
						background: var(--e-button-context-color);
						color: #fff;
					}

					.rtsb-offer-notice .button-primary:focus,
					.rtsb-offer-notice .button-dismiss:focus {
						box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--e-button-context-color);
						background: var(--e-button-context-color);
						color: #fff;
					}

					.rtsb-offer-notice .button-dismiss {
						border: 1px solid;
						background: 0 0;
						color: var(--e-button-context-color);
						background: #fff;
					}

					.rtsb-offer-notice .offer-footer {
						padding-top: 10px;
					}

					.rtsb-offer-notice .notice-text b {
						display: inline-block;
						transform: skewX(-10deg);
						line-height: 1;
					}
				</style>

				<div class="rtsb-offer-notice notice notice-info is-dismissible"
					 data-rtsbdismissable="rtsb_offer">
					<img alt="<?php echo esc_attr( $this->options['plugin_name'] ); ?>"
						 src="<?php echo esc_url( $this->options['image_url'] ); ?>"
						 width="100px"
						 height="100px"/>
					<h3 style="display: flex; align-items: center;"><?php echo sprintf( '%s – %s', esc_html( $this->options['plugin_name'] ), wp_kses_post( $this->options['notice_for'] ) ); ?></h3>

					<p class="notice-text">
						<?php echo wp_kses_post( $this->options['notice_message'] ); ?>
					</p>
					<p class="offer-footer" style="display: flex; align-items: center;">
						<a class="button button-primary"
						   href="<?php echo esc_url( $this->options['download_link'] ); ?>" target="_blank">Buy Now</a>
						<a class="button button-dismiss" href="#">Dismiss</a>
					</p>
				</div>

				<?php
			},
			9
		);

		add_action(
			'admin_footer',
			function () {
				?>
				<script type="text/javascript">
					(function ($) {
						$(function () {
							setTimeout(function () {
								$('div[data-rtsbdismissable] .notice-dismiss, div[data-rtsbdismissable] .button-dismiss')
									.on('click', function (e) {
										e.preventDefault();
										$.post(ajaxurl, {
											'action': 'rtsb_dismiss_offer_admin_notice',
											'nonce': <?php echo wp_json_encode( wp_create_nonce( 'rtsb-offer-dismissible-notice' ) ); ?>
										});
										$(e.target).closest('.is-dismissible').remove();
									});
							}, 1000);
						});
					})(jQuery);
				</script>
				<?php
			}
		);

		add_action(
			'wp_ajax_rtsb_dismiss_offer_admin_notice',
			function () {
				check_ajax_referer( 'rtsb-offer-dismissible-notice', 'nonce' );
				if ( ! empty( $this->options['option_name'] ) ) {
					update_option( $this->options['option_name'], '1' );
				}
				wp_die();
			}
		);
	}
}

```
