File: //home/salamatk/.trash/woodmart1/inc/modules/layouts/elementor/single-product/class-countdown.php
<?php
/**
* Countdown map.
*
* @package xts
*/
namespace XTS\Modules\Layouts;
use Elementor\Group_Control_Typography;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
/**
* Elementor widget that inserts an embeddable content into the page, from any given URL.
*/
class Countdown extends Widget_Base {
/**
* Get widget name.
*
* @return string Widget name.
*/
public function get_name() {
return 'wd_single_product_countdown';
}
/**
* Get widget title.
*
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Product countdown', 'woodmart' );
}
/**
* Get widget icon.
*
* @return string Widget icon.
*/
public function get_icon() {
return 'wd-icon-sp-countdown';
}
/**
* Get widget categories.
*
* @return array Widget categories.
*/
public function get_categories() {
return array( 'wd-single-product-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( 'single_product' );
}
/**
* Register the widget controls.
*/
protected function register_controls() {
/**
* Content tab.
*/
/**
* General settings.
*/
$this->start_controls_section(
'general_section',
array(
'label' => esc_html__( 'General', 'woodmart' ),
)
);
$this->add_control(
'title',
array(
'label' => esc_html__( 'Element title', 'woodmart' ),
'type' => Controls_Manager::TEXT,
)
);
$this->end_controls_section();
$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-single-countdown',
'prefix_class' => '',
)
);
$this->add_control(
'timer_style',
array(
'label' => esc_html__( 'Style', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'standard' => esc_html__( 'Default', 'woodmart' ),
'transparent' => esc_html__( 'Shadow', 'woodmart' ),
'active' => esc_html__( 'Primary color', 'woodmart' ),
'simple' => esc_html__( 'Simple', 'woodmart' ),
),
'default' => 'standard',
)
);
$this->add_control(
'woodmart_color_scheme',
array(
'label' => esc_html__( 'Color Scheme', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'' => esc_html__( 'Inherit', 'woodmart' ),
'light' => esc_html__( 'Light', 'woodmart' ),
'dark' => esc_html__( 'Dark', 'woodmart' ),
),
'default' => '',
)
);
$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(
'title_style_section',
array(
'label' => esc_html__( 'Title', 'woodmart' ),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_control(
'title_color',
array(
'label' => esc_html__( 'Color', 'woodmart' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}}.wd-single-countdown .element-title' => 'color: {{VALUE}}',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'title_typography',
'label' => esc_html__( 'Typography', 'woodmart' ),
'selector' => '{{WRAPPER}}.wd-single-countdown .element-title',
)
);
$this->end_controls_section();
}
/**
* Render the widget output on the frontend.
*/
protected function render() {
Main::setup_preview();
woodmart_product_sale_countdown( $this->get_settings_for_display() );
Main::restore_preview();
}
}
Plugin::instance()->widgets_manager->register( new Countdown() );