PATH:
home
/
thebhoeo
/
.trash
/
woodmart
/
inc
/
modules
/
layouts
/
elementor
/
checkout
<?php /** * Shipping details map. * * @package Woodmart */ namespace XTS\Modules\Layouts; use Elementor\Controls_Manager; 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 Shipping_Details_Form extends Widget_Base { /** * Get widget name. * * @return string Widget name. */ public function get_name() { return 'wd_checkout_shipping_details_from'; } /** * Get widget title. * * @return string Widget title. */ public function get_title() { return esc_html__( 'Shipping details', 'woodmart' ); } /** * Get widget icon. * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-ch-shipping-details'; } /** * 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_form' ); } /** * 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. */ /** * Title settings. */ $this->start_controls_section( 'title_style_section', array( 'label' => esc_html__( 'Title', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'css_classes', array( 'type' => 'wd_css_class', 'default' => 'wd-shipping-details', 'prefix_class' => '', ) ); $this->add_control( 'title', array( 'label' => esc_html__( 'Enable title', 'woodmart' ), 'description' => esc_html__( 'If "NO" title will be removed.', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'show', 'return_value' => 'show', 'prefix_class' => 'wd-title-', ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'name' => 'title_typography', 'label' => esc_html__( 'Typography', 'woodmart' ), 'selector' => '{{WRAPPER}} .woocommerce-additional-fields > h3, {{WRAPPER}} .woocommerce-shipping-fields > h3', 'condition' => array( 'title' => 'show', ), ) ); $this->add_control( 'title_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .woocommerce-additional-fields > h3, {{WRAPPER}} .woocommerce-shipping-fields > h3' => 'color: {{VALUE}}', ), 'condition' => array( 'title' => 'show', ), ) ); $this->add_control( 'title_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' => '', 'condition' => array( 'title' => 'show', ), ) ); $this->end_controls_section(); } /** * Render the widget output on the frontend. */ protected function render() { if ( ! is_object( WC()->cart ) || 0 === WC()->cart->get_cart_contents_count() ) { return; } WC()->checkout()->checkout_form_shipping(); } } Plugin::instance()->widgets_manager->register( new Shipping_Details_Form() );
[-] class-payment-methods.php
[edit]
[-] class-shipping-details-form.php
[edit]
[-] class-coupon-form.php
[edit]
[-] class-order-review.php
[edit]
[+]
..
[-] class-billing-details-form.php
[edit]
[-] class-login-form.php
[edit]