File: //home/karalev/www/wp-content/plugins/woolentor-addons/includes/addons/wb_product_rating.php
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class Woolentor_Wb_Product_Rating_Widget extends Widget_Base {
public function get_name() {
return 'wl-single-product-rating';
}
public function get_title() {
return __( 'WL: Product Rating', 'woolentor' );
}
public function get_icon() {
return 'eicon-product-rating';
}
public function get_categories() {
return array( 'woolentor-addons' );
}
public function get_help_url() {
return 'https://woolentor.com/documentation/';
}
public function get_style_depends(){
return [
'woolentor-widgets',
];
}
public function get_keywords(){
return ['product rating','rating'];
}
protected function register_controls() {
// Product Rating Style
$this->start_controls_section(
'product_rating_style_section',
array(
'label' => __( 'Style', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_control(
'product_rating_color',
[
'label' => __( 'Star Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .star-rating' => 'color: {{VALUE}} !important;',
'{{WRAPPER}} .star-rating span:before' => 'color: {{VALUE}} !important;',
'{{WRAPPER}} .woocommerce-product-rating' => 'color: {{VALUE}} !important;',
],
]
);
$this->add_control(
'product_rating_text_color',
[
'label' => __( 'Link Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} a.woocommerce-review-link' => 'color: {{VALUE}} !important;',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'product_rating_link_typography',
'label' => __( 'Link Typography', 'woolentor' ),
'selector' => '{{WRAPPER}} a.woocommerce-review-link',
)
);
$this->add_control(
'rating_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em' ],
'selectors' => [
'.woocommerce {{WRAPPER}} .woocommerce-product-rating' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
],
]
);
$this->add_responsive_control(
'product_rating_align',
[
'label' => __( 'Alignment', 'woolentor' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'left' => [
'title' => __( 'Left', 'woolentor' ),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => __( 'Center', 'woolentor' ),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => __( 'Right', 'woolentor' ),
'icon' => 'eicon-text-align-right',
]
],
'selectors' => [
'.woocommerce {{WRAPPER}} .woocommerce-product-rating' => 'text-align: {{VALUE}};line-height:1',
'.woocommerce {{WRAPPER}} .woocommerce-product-rating .star-rating' => 'display:inline-block;float:none;margin-top:0',
],
]
);
$this->end_controls_section();
}
protected function render( $instance = [] ) {
$settings = $this->get_settings_for_display();
global $product;
$product = wc_get_product();
if( woolentor_is_preview_mode() ){
echo \WooLentor_Default_Data::instance()->default( $this->get_name() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
} else{
if ( empty( $product ) ) { return; }
woocommerce_template_single_rating();
}
}
}