Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
immortalist
/
wp-content
/
themes
/
woodmart
/
inc
/
modules
/
layouts
/
elementor
/
checkout
:
class-coupon-form.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Coupon form map. * * @package Woodmart */ namespace XTS\Modules\Layouts; use Elementor\Controls_Manager; use Elementor\Group_Control_Border; use Elementor\Group_Control_Typography; use Elementor\Plugin; use Elementor\Widget_Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } /** * Elementor widget that inserts an embeddable content into the page, from any given URL. */ class Coupon_Form extends Widget_Base { /** * Get widget name. * * @return string Widget name. */ public function get_name() { return 'wd_checkout_coupon_form'; } /** * Get widget title. * * @return string Widget title. */ public function get_title() { return esc_html__( 'Coupon form', 'woodmart' ); } /** * Get widget icon. * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-ch-coupon-form'; } /** * Get widget categories. * * @return array Widget categories. */ public function get_categories() { return array( 'wd-checkout-elements' ); } /** * Show in panel. * * @return bool Whether to show the widget in the panel or not. */ public function show_in_panel() { return Main::is_layout_type( 'checkout_content' ); } /** * Retrieve the list of scripts the counter widget depended on. * * @return array Widget scripts dependencies. */ public function get_script_depends() { return array( 'wc-checkout' ); } /** * Register the widget controls. */ protected function register_controls() { /** * Style tab. */ /** * General settings. */ $this->start_controls_section( 'general_style_section', array( 'label' => esc_html__( 'General', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'css_classes', array( 'type' => 'wd_css_class', 'default' => 'wd-checkout-coupon', 'prefix_class' => '', ) ); $this->add_control( 'alignment', array( 'label' => esc_html__( 'Alignment', 'woodmart' ), 'type' => 'wd_buttons', 'options' => array( 'left' => array( 'title' => esc_html__( 'Left', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/left.jpg', ), 'center' => array( 'title' => esc_html__( 'Center', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/center.jpg', ), 'right' => array( 'title' => esc_html__( 'Right', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/right.jpg', ), ), 'prefix_class' => 'text-', 'default' => '', ) ); $this->end_controls_section(); /** * Toggle settings. */ $this->start_controls_section( 'toggle_style_section', array( 'label' => esc_html__( 'Toggle', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'name' => 'toggle_typography', 'label' => esc_html__( 'Typography', 'woodmart' ), 'selector' => '{{WRAPPER}} .woocommerce-form-coupon-toggle > div', ) ); $this->end_controls_section(); /** * Form settings. */ $this->start_controls_section( 'form_style_section', array( 'label' => esc_html__( 'Form', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_responsive_control( 'form_width', array( 'label' => esc_html__( 'Width', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'size_units' => array( 'px', '%' ), 'range' => array( 'px' => array( 'min' => 0, 'max' => 1200, 'step' => 1, ), '%' => array( 'min' => 0, 'max' => 100, 'step' => 1, ), ), 'selectors' => array( '{{WRAPPER}} .woocommerce-form-coupon' => 'max-width: {{SIZE}}{{UNIT}};', ), 'default' => array( 'unit' => 'px', 'size' => 470, ), ) ); $this->add_control( 'form_bg_color', array( 'label' => esc_html__( 'Background color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .woocommerce-form-coupon' => 'background-color: {{VALUE}}', ), ) ); $this->add_group_control( Group_Control_Border::get_type(), array( 'name' => 'form_border', 'label' => esc_html__( 'Border', 'woodmart' ), 'selector' => '{{WRAPPER}} .woocommerce-form-coupon', 'separator' => 'before', ) ); $this->add_responsive_control( 'border_radius', array( 'label' => esc_html__( 'Border radius', 'woodmart' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => array( 'px' ), 'selectors' => array( '{{WRAPPER}} .woocommerce-form-coupon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ), 'condition' => array( 'form_border_border!' => array( '', 'none' ), ), ) ); $this->add_responsive_control( 'form_padding', array( 'label' => esc_html__( 'Padding', 'woodmart' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => array( 'px' ), 'default' => array( 'top' => '', 'bottom' => '', 'left' => '', 'right' => '', 'unit' => 'px', 'isLinked' => true, ), 'selectors' => array( '{{WRAPPER}} .woocommerce-form-coupon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ), 'separator' => 'before', ) ); $this->end_controls_section(); } /** * Render the widget output on the frontend. */ protected function render() { if ( ( is_user_logged_in() || WC()->checkout()->is_registration_enabled() || ! WC()->checkout()->is_registration_required() ) && wc_coupons_enabled() ) { ?> <?php woocommerce_checkout_coupon_form(); ?> <?php } } } Plugin::instance()->widgets_manager->register( new Coupon_Form() );