rp-wcdpd-pricing-method-fee-amount.class.php 1.34 KB
<?php

// Exit if accessed directly
if (!defined('ABSPATH')) {
    exit;
}

// Load dependencies
if (!class_exists('RP_WCDPD_Pricing_Method_Fee')) {
    require_once('rp-wcdpd-pricing-method-fee.class.php');
}

/**
 * Pricing Method: Fee - Amount
 *
 * @class RP_WCDPD_Pricing_Method_Fee_Amount
 * @package WooCommerce Dynamic Pricing & Discounts
 * @author RightPress
 */
if (!class_exists('RP_WCDPD_Pricing_Method_Fee_Amount')) {

class RP_WCDPD_Pricing_Method_Fee_Amount extends RP_WCDPD_Pricing_Method_Fee
{
    protected $key      = 'amount';
    protected $contexts = array('product_pricing_simple', 'checkout_fees_simple');
    protected $position = 10;

    // Singleton instance
    protected static $instance = false;

    /**
     * Singleton control
     */
    public static function get_instance()
    {
        if (!self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }

    /**
     * Constructor class
     *
     * @access public
     * @return void
     */
    public function __construct()
    {
        parent::__construct();

        $this->hook();
    }

    /**
     * Get label
     *
     * @access public
     * @return string
     */
    public function get_label()
    {
        return __('Fixed fee', 'rp_wcdpd');
    }





}

RP_WCDPD_Pricing_Method_Fee_Amount::get_instance();

}