PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
modules
/
layouts
/
elementor
/
woocommerce
<?php /** * Shipping progress bar map. * * @package woodmart */ namespace XTS\Modules\Layouts; use Elementor\Widget_Base; use Elementor\Controls_Manager; use Elementor\Plugin; use XTS\Modules\Shipping_Progress_Bar\Frontend as Shipping_Progress_Bar_Module; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } /** * Elementor widget that inserts an embeddable content into the page, from any given URL. */ class Shipping_Progress_Bar extends Widget_Base { /** * Get widget name. * * @return string Widget name. */ public function get_name() { return 'wd_single_product_shipping_progress_bar'; } /** * Get widget title. * * @return string Widget title. */ public function get_title() { return esc_html__( 'Shipping progress bar', 'woodmart' ); } /** * Get widget icon. * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-wc-shipping-progress-bar'; } /** * Get widget categories. * * @return array Widget categories. */ public function get_categories() { return array( 'wd-site-elements' ); } /** * Show in panel. * * @return bool Whether to show the widget in the panel or not. */ public function show_in_panel() { return woodmart_woocommerce_installed(); } /** * Register the widget controls. */ protected function register_controls() { /** * Content 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-shipping-progress-bar', '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' => 'left', ) ); $this->add_control( 'style', array( 'label' => esc_html__( 'Style', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'bordered' => esc_html__( 'Bordered', 'woodmart' ), ), 'prefix_class' => 'wd-style-', 'default' => 'bordered', ) ); $this->end_controls_section(); } /** * Render the widget output on the frontend. */ protected function render() { if ( ! woodmart_get_opt( 'shipping_progress_bar_enabled' ) ) { return; } Main::setup_preview(); woodmart_enqueue_inline_style( 'woo-opt-free-progress-bar' ); woodmart_enqueue_inline_style( 'woo-mod-progress-bar' ); Shipping_Progress_Bar_Module::get_instance()->render_shipping_progress_bar(); Main::restore_preview(); } } Plugin::instance()->widgets_manager->register( new Shipping_Progress_Bar() );
[-] class-breadcrumb.php
[edit]
[-] class-free-gifts.php
[edit]
[-] class-checkout-steps.php
[edit]
[-] class-shipping-progress-bar.php
[edit]
[-] class-hook.php
[edit]
[+]
..
[-] class-notices.php
[edit]