<?php
namespace ElementorPro\Modules\Payments\Classes;
use Elementor\Controls_Manager;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Typography;
use Elementor\Modules\DynamicTags\Module as TagsModule;
use Elementor\Widget_Button;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
abstract class Payment_Button extends Widget_Button {
// Payment types.
const PAYMENT_TYPE_CHECKOUT = 'checkout';
const PAYMENT_TYPE_SUBSCRIPTION = 'subscription';
const PAYMENT_TYPE_DONATION = 'donation';
// Billing cycles.
const BILLING_CYCLE_DAYS = 'days';
const BILLING_CYCLE_WEEKS = 'weeks';
const BILLING_CYCLE_MONTHS = 'months';
const BILLING_CYCLE_YEARS = 'years';
// Donation types.
const DONATION_TYPE_ANY = 'any';
const DONATION_TYPE_FIXED = 'fixed';
// Error messages.
const ERROR_MESSAGE_GLOBAL = 'global';
const ERROR_MESSAGE_PAYMENT_METHOD = 'payment';
// Retrieve the merchant display name.
abstract protected function get_merchant_name();
// Account details section.
abstract protected function register_account_section();
// Custom sandbox controls.
abstract protected function register_sandbox_controls();
// Render custom controls after product type.
protected function after_product_type() { }
// Return an array of supported currencies.
protected function get_currencies() {
return [
'AUD' => _x( 'Australian Dollar', 'Currency', 'elementor-pro' ),
'CAD' => _x( 'Canadian Dollar', 'Currency', 'elementor-pro' ),
'CZK' => _x( 'Czech Koruna', 'Currency', 'elementor-pro' ),
'DKK' => _x( 'Danish Krone', 'Currency', 'elementor-pro' ),
'EUR' => _x( 'European Euro', 'Currency', 'elementor-pro' ),
'HKD' => _x( 'Hong Kong Dollar', 'Currency', 'elementor-pro' ),
'HUF' => _x( 'Hungarian Forint', 'Currency', 'elementor-pro' ),
'ILS' => _x( 'Israeli New Sheqel', 'Currency', 'elementor-pro' ),
'JPY' => _x( 'Japanese Yen', 'Currency', 'elementor-pro' ),
'MXN' => _x( 'Mexican Peso', 'Currency', 'elementor-pro' ),
'NOK' => _x( 'Norwegian Krone', 'Currency', 'elementor-pro' ),
'NZD' => _x( 'New Zealand Dollar', 'Currency', 'elementor-pro' ),
'PHP' => _x( 'Philippine Peso', 'Currency', 'elementor-pro' ),
'PLN' => _x( 'Polish Zloty', 'Currency', 'elementor-pro' ),
'GBP' => _x( 'GBP', 'Currency', 'elementor-pro' ),
'RUB' => _x( 'Russian Ruble', 'Currency', 'elementor-pro' ),
'SGD' => _x( 'Singapore Dollar', 'Currency', 'elementor-pro' ),
'SEK' => _x( 'Swedish Krona', 'Currency', 'elementor-pro' ),
'CHF' => _x( 'Swiss Franc', 'Currency', 'elementor-pro' ),
'TWD' => _x( 'Taiwan New Dollar', 'Currency', 'elementor-pro' ),
'THB' => _x( 'Thai Baht', 'Currency', 'elementor-pro' ),
'TRY' => _x( 'Turkish Lira', 'Currency', 'elementor-pro' ),
'USD' => _x( 'U.S. Dollar', 'Currency', 'elementor-pro' ),
];
}
// Return an array of default error messages.
protected function get_default_error_messages() {
return [
self::ERROR_MESSAGE_GLOBAL => __( 'An error occurred.', 'elementor-pro' ),
self::ERROR_MESSAGE_PAYMENT_METHOD => __( 'No payment method connected. Contact seller.', 'elementor-pro' ),
];
}
// Get message text by id (`error_message_$id`).
protected function get_custom_message( $id ) {
$message = $this->get_settings_for_display( 'error_message_' . $id );
// Return the user-defined message.
if ( ! empty( $message ) ) {
return $message;
}
// Return the default message.
$error_messages = $this->get_default_error_messages();
return ( ! empty( $error_messages[ $id ] ) ) ? $error_messages[ $id ] : __( 'Unknown error.', 'elementor-pro' );
}
// Product details section.
protected function register_product_controls() {
$this->add_control(
'type',
[
'label' => __( 'Transaction Type', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => 'checkout',
'options' => [
self::PAYMENT_TYPE_CHECKOUT => __( 'Checkout', 'elementor-pro' ),
self::PAYMENT_TYPE_DONATION => __( 'Donation', 'elementor-pro' ),
self::PAYMENT_TYPE_SUBSCRIPTION => __( 'Subscription', 'elementor-pro' ),
],
'separator' => 'before',
]
);
$this->after_product_type();
$this->add_control(
'product_name',
[
'label' => __( 'Item Name', 'elementor-pro' ),
'type' => Controls_Manager::TEXT,
'dynamic' => [
'active' => true,
],
'label_block' => true,
]
);
$this->add_control(
'product_sku',
[
'label' => __( 'SKU', 'elementor-pro' ),
'type' => Controls_Manager::TEXT,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'product_price',
[
'label' => __( 'Price', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'default' => '0.00',
'dynamic' => [
'active' => true,
],
'condition' => [
'type!' => self::PAYMENT_TYPE_DONATION,
],
]
);
$this->add_control(
'donation_type',
[
'label' => __( 'Donation Amount', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => self::DONATION_TYPE_FIXED,
'options' => [
self::DONATION_TYPE_ANY => __( 'Any Amount', 'elementor-pro' ),
self::DONATION_TYPE_FIXED => __( 'Fixed', 'elementor-pro' ),
],
'condition' => [
'type' => self::PAYMENT_TYPE_DONATION,
],
]
);
$this->add_control(
'donation_amount',
[
'label' => __( 'Amount', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'default' => '1',
'dynamic' => [
'active' => true,
],
'condition' => [
'type' => self::PAYMENT_TYPE_DONATION,
'donation_type' => self::DONATION_TYPE_FIXED,
],
]
);
$this->add_control(
'currency',
[
'label' => __( 'Currency', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => 'USD',
'options' => $this->get_currencies(),
]
);
$this->add_control(
'billing_cycle',
[
'label' => __( 'Billing Cycle', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => self::BILLING_CYCLE_MONTHS,
'options' => [
self::BILLING_CYCLE_DAYS => __( 'Daily', 'elementor-pro' ),
self::BILLING_CYCLE_WEEKS => __( 'Weekly', 'elementor-pro' ),
self::BILLING_CYCLE_MONTHS => __( 'Monthly', 'elementor-pro' ),
self::BILLING_CYCLE_YEARS => __( 'Yearly', 'elementor-pro' ),
],
'condition' => [
'type' => self::PAYMENT_TYPE_SUBSCRIPTION,
],
]
);
$this->add_control(
'auto_renewal',
[
'type' => Controls_Manager::SWITCHER,
'label' => __( 'Auto Renewal', 'elementor-pro' ),
'default' => 'yes',
'label_off' => __( 'Off', 'elementor-pro' ),
'label_on' => __( 'On', 'elementor-pro' ),
'condition' => [
'type' => self::PAYMENT_TYPE_SUBSCRIPTION,
],
]
);
$this->add_control(
'quantity',
[
'label' => __( 'Quantity', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'condition' => [
'type' => self::PAYMENT_TYPE_CHECKOUT,
],
]
);
$this->add_control(
'shipping_price',
[
'label' => __( 'Shipping Price', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'default' => 0,
'dynamic' => [
'active' => true,
],
'condition' => [
'type' => self::PAYMENT_TYPE_CHECKOUT,
],
]
);
$this->add_control(
'tax_type',
[
'label' => __( 'Tax', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => '',
'options' => [
'' => __( 'None', 'elementor-pro' ),
'percentage' => __( 'Percentage', 'elementor-pro' ),
],
'condition' => [
'type' => self::PAYMENT_TYPE_CHECKOUT,
],
]
);
$this->add_control(
'tax_rate',
[
'label' => __( 'Tax Percentage', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'default' => '0',
'dynamic' => [
'active' => true,
],
'condition' => [
'type' => self::PAYMENT_TYPE_CHECKOUT,
'tax_type' => 'percentage',
],
]
);
}
// Submission settings section.
protected function register_settings_section() {
$this->start_controls_section(
'section_settings',
[
'label' => __( 'Additional Options', 'elementor-pro' ),
]
);
$this->add_control(
'redirect_after_success',
[
'label' => __( 'Redirect After Success', 'elementor-pro' ),
'type' => Controls_Manager::URL,
'options' => false,
'placeholder' => __( 'Paste URL or type', 'elementor-pro' ),
'dynamic' => [
'active' => true,
],
'label_block' => true,
'render_type' => 'none',
]
);
$this->add_control(
'sandbox_mode',
[
'type' => Controls_Manager::SWITCHER,
'label' => __( 'Sandbox', 'elementor-pro' ),
'default' => 'no',
'label_off' => __( 'Off', 'elementor-pro' ),
'label_on' => __( 'On', 'elementor-pro' ),
]
);
$this->register_sandbox_controls();
$this->add_control(
'open_in_new_window',
[
'type' => Controls_Manager::SWITCHER,
'label' => sprintf( __( 'Open %s In New Tab', 'elementor-pro' ), $this->get_merchant_name() ),
'default' => 'yes',
'label_off' => __( 'No', 'elementor-pro' ),
'label_on' => __( 'Yes', 'elementor-pro' ),
]
);
$this->add_control(
'custom_messages',
[
'label' => __( 'Custom Messages', 'elementor-pro' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
]
);
Loading ...