PATH:
home
/
thebhoeo
/
.trash
/
woodmart
/
inc
/
modules
/
layouts
/
elementor
/
thank-you-page
<?php /** * Order overview map. * * @package Woodmart */ namespace XTS\Modules\Layouts; use Elementor\Widget_Base; use Elementor\Controls_Manager; use Elementor\Plugin; use Elementor\Group_Control_Typography; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } /** * Elementor widget that inserts an embeddable content into the page, from any given URL. */ class Order_Overview extends Widget_Base { /** * Get widget name. * * @return string Widget name. */ public function get_name() { return 'wd_tp_order_overview'; } /** * Get widget content. * * @return string Widget title. */ public function get_title() { return esc_html__( 'Order overview', 'woodmart' ); } /** * Get widget icon. * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-tp-order-overview'; } /** * Get widget categories. * * @return array Widget categories. */ public function get_categories() { return array( 'wd-thank-you-page-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( 'thank_you_page' ); } /** * 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( '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' => 'left', ) ); $this->end_controls_section(); $this->start_controls_section( 'label_style_section', array( 'label' => esc_html__( 'Label', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'css_classes', array( 'type' => 'wd_css_class', 'default' => 'wd-el-tp-order-overview', 'prefix_class' => '', ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'label' => esc_html__( 'Typography', 'woodmart' ), 'name' => 'label_typography', 'selector' => '{{WRAPPER}} .woocommerce-thankyou-order-details li > span', ) ); $this->add_control( 'label_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .woocommerce-thankyou-order-details li > span' => 'color: {{VALUE}}', ), ) ); $this->end_controls_section(); $this->start_controls_section( 'value_style_section', array( 'label' => esc_html__( 'Value', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'label' => esc_html__( 'Typography', 'woodmart' ), 'name' => 'value_typography', 'selector' => '{{WRAPPER}} .woocommerce-thankyou-order-details :is(strong,.amount)', ) ); $this->add_control( 'value_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .woocommerce-thankyou-order-details :is(strong,.amount)' => 'color: {{VALUE}}', ), ) ); $this->end_controls_section(); } /** * Render the widget output on the frontend. */ protected function render() { Main::setup_preview(); global $order; if ( $order && is_a( $order, 'WC_Order' ) ) { woodmart_order_overview( $order ); } Main::restore_preview(); } } Plugin::instance()->widgets_manager->register( new Order_Overview() );
[-] class-order-details.php
[edit]
[-] class-order-meta.php
[edit]
[+]
..
[-] class-order-message.php
[edit]
[-] class-payment-instructions.php
[edit]
[-] class-customer-details.php
[edit]
[-] class-order-overview.php
[edit]