File: //proc/self/cwd/wp-content/plugins/woolentor-addons/includes/addons/wb_customer_review.php
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
class Woolentor_Wb_Customer_Review_Widget extends Widget_Base {
public function get_name() {
return 'wl-customer-veview';
}
public function get_title() {
return __( 'WL: Customer Review', 'woolentor' );
}
public function get_icon() {
return 'eicon-comments';
}
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 ['review','customer','product review','customer review'];
}
protected function register_controls() {
$this->start_controls_section(
'review_content',
[
'label' => __( 'Review', 'woolentor' ),
]
);
$this->add_control(
'review_layout',
[
'label' => __( 'Style', 'woolentor' ),
'type' => Controls_Manager::SELECT,
'default' => '1',
'options' => [
'1' => __( 'Style One', 'woolentor' ),
'2' => __( 'Style Two', 'woolentor' ),
'3' => __( 'Style Three', 'woolentor' ),
'4' => __( 'Style Four', 'woolentor' ),
],
]
);
$this->add_control(
'review_type',
[
'label' => __( 'Review Type', 'woolentor' ),
'type' => Controls_Manager::SELECT,
'default' => 'custom',
'options' => [
'custom' => __( 'Custom', 'woolentor' ),
],
'description' => sprintf( __( 'Product Wise Rating/Review Display is available in ShopLentor Pro. <a href="%s" target="_blank">Purchase ShopLentor Pro</a>', 'woolentor' ), esc_url( 'https://hasthemes.com/plugins/woolentor-pro-woocommerce-page-builder/?reviewwidget' ) ),
]
);
$repeater = new Repeater();
$repeater->add_control(
'client_name',
[
'label' => __( 'Name', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __('Carolina Monntoya','woolentor'),
]
);
$repeater->add_control(
'client_designation',
[
'label' => __( 'Designation', 'woolentor' ),
'type' => Controls_Manager::TEXT,
'default' => __('Managing Director','woolentor'),
]
);
$repeater->add_control(
'client_rating',
[
'label' => __( 'Client Rating', 'woolentor' ),
'type' => Controls_Manager::NUMBER,
'min' => 1,
'max' => 5,
'step' => 1,
]
);
$repeater->add_control(
'client_image',
[
'label' => __( 'Image', 'woolentor' ),
'type' => Controls_Manager::MEDIA,
]
);
$repeater->add_group_control(
Group_Control_Image_Size::get_type(),
[
'name' => 'client_imagesize',
'default' => 'large',
'separator' => 'none',
]
);
$repeater->add_control(
'client_say',
[
'label' => __( 'Client Say', 'woolentor' ),
'type' => Controls_Manager::TEXTAREA,
'default' => __('Lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.','woolentor'),
]
);
$this->add_control(
'review_list',
[
'type' => Controls_Manager::REPEATER,
'condition'=>[
'review_type' => 'custom',
],
'fields' => $repeater->get_controls(),
'default' => [
[
'client_name' => __('Carolina Monntoya','woolentor'),
'client_designation' => __( 'Managing Director','woolentor' ),
'client_rating'=>'5',
'client_say' => __( 'Lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'woolentor' ),
],
[
'client_name' => __('Peter Rose','woolentor'),
'client_designation' => __( 'Manager','woolentor' ),
'client_rating'=>'5',
'client_say' => __( 'Lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'woolentor' ),
],
[
'client_name' => __('Gerald Gilbert','woolentor'),
'client_designation' => __( 'Developer','woolentor' ),
'client_rating'=>'5',
'client_say' => __( 'Lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', 'woolentor' ),
],
],
'title_field' => '{{{ client_name }}}',
]
);
$this->end_controls_section();
// Options
$this->start_controls_section(
'review_option',
[
'label' => __( 'Option', 'woolentor' ),
]
);
$this->add_responsive_control(
'column',
[
'label' => esc_html__( 'Columns', 'woolentor' ),
'type' => Controls_Manager::SELECT,
'default' => '3',
'options' => [
'1' => esc_html__( 'One', 'woolentor' ),
'2' => esc_html__( 'Two', 'woolentor' ),
'3' => esc_html__( 'Three', 'woolentor' ),
'4' => esc_html__( 'Four', 'woolentor' ),
'5' => esc_html__( 'Five', 'woolentor' ),
'6' => esc_html__( 'Six', 'woolentor' ),
'7' => esc_html__( 'Seven', 'woolentor' ),
'8' => esc_html__( 'Eight', 'woolentor' ),
'9' => esc_html__( 'Nine', 'woolentor' ),
'10'=> esc_html__( 'Ten', 'woolentor' ),
],
'label_block' => true,
'prefix_class' => 'wl-columns%s-',
]
);
$this->add_control(
'no_gutters',
[
'label' => esc_html__( 'No Gutters', 'woolentor' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Yes', 'woolentor' ),
'label_off' => esc_html__( 'No', 'woolentor' ),
'return_value' => 'yes',
'default' => 'no',
]
);
$this->add_responsive_control(
'item_space',
[
'label' => esc_html__( 'Space', 'woolentor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', '%' ],
'range' => [
'px' => [
'min' => 0,
'max' => 1000,
'step' => 1,
],
'%' => [
'min' => 0,
'max' => 100,
],
],
'default' => [
'unit' => 'px',
'size' => 15,
],
'condition'=>[
'no_gutters!'=>'yes',
],
'selectors' => [
'{{WRAPPER}} .wl-row > [class*="col-"]' => 'padding: 0 {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'item_bottom_space',
[
'label' => esc_html__( 'Bottom Space', 'woolentor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', '%' ],
'range' => [
'px' => [
'min' => 0,
'max' => 1000,
'step' => 1,
],
'%' => [
'min' => 0,
'max' => 100,
],
],
'default' => [
'unit' => 'px',
'size' => 30,
],
'condition'=>[
'no_gutters!'=>'yes',
],
'selectors' => [
'{{WRAPPER}} .wl-row > [class*="col-"]' => 'margin-bottom:{{SIZE}}{{UNIT}};',
],
]
);
$this->end_controls_section();
// Style style start
$this->start_controls_section(
'testimonial_area_style',
[
'label' => __( 'Area', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_responsive_control(
'testimonial_content_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' => [
'{{WRAPPER}} .wl-customer-testimonal' => 'text-align: {{VALUE}};',
],
'prefix_class' => 'wl-customer-align%s-',
'separator' =>'before',
]
);
$this->add_responsive_control(
'testimonial_area_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->add_group_control(
Group_Control_Background::get_type(),
[
'name' => 'testimonial_area_background',
'label' => __( 'Background', 'woolentor' ),
'types' => [ 'classic', 'gradient' ],
'selector' => '{{WRAPPER}} .wl-customer-testimonal',
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'testimonial_area_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wl-customer-testimonal',
]
);
$this->add_responsive_control(
'testimonial_area_border_radius',
[
'label' => __( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->end_controls_section();
// Style image style start
$this->start_controls_section(
'testimonial_image_style',
[
'label' => __( 'Image', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'testimonial_image_border',
'label' => __( 'Border', 'woolentor' ),
'selector' => '{{WRAPPER}} .wl-customer-testimonal img',
]
);
$this->add_responsive_control(
'testimonial_image_border_radius',
[
'label' => esc_html__( 'Border Radius', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal img' => 'border-radius: {{TOP}}px {{RIGHT}}px {{BOTTOM}}px {{LEFT}}px;',
],
]
);
$this->end_controls_section(); // Style Testimonial image style end
// Style Testimonial name style start
$this->start_controls_section(
'testimonial_name_style',
[
'label' => __( 'Name', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'testimonial_name_color',
[
'label' => __( 'Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal .clint-info h4' => 'color: {{VALUE}};',
'{{WRAPPER}} .wlb-review-style-2 .wl-customer-testimonal .clint-info h4:before' => 'background-color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'testimonial_name_typography',
'selector' => '{{WRAPPER}} .wl-customer-testimonal .clint-info h4',
]
);
$this->add_responsive_control(
'testimonial_name_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal .clint-info h4' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->add_responsive_control(
'testimonial_name_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal .clint-info h4' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->end_controls_section(); // Style Testimonial name style end
// Style Testimonial designation style start
$this->start_controls_section(
'testimonial_designation_style',
[
'label' => __( 'Designation', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'testimonial_designation_color',
[
'label' => __( 'Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal .clint-info span' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'testimonial_designation_typography',
'selector' => '{{WRAPPER}} .wl-customer-testimonal .clint-info span',
]
);
$this->add_responsive_control(
'testimonial_designation_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal .clint-info span' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->add_responsive_control(
'testimonial_designation_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal .clint-info span' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->end_controls_section(); // Style Testimonial designation style end
// Style Testimonial designation style start
$this->start_controls_section(
'testimonial_clientsay_style',
[
'label' => __( 'Client say', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'testimonial_clientsay_color',
[
'label' => __( 'Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal p' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'testimonial_clientsay_typography',
'selector' => '{{WRAPPER}} .wl-customer-testimonal p',
]
);
$this->add_responsive_control(
'testimonial_clientsay_margin',
[
'label' => __( 'Margin', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal p' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->add_responsive_control(
'testimonial_clientsay_padding',
[
'label' => __( 'Padding', 'woolentor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em' ],
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal p' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
'separator' =>'before',
]
);
$this->end_controls_section(); // Style Testimonial designation style end
// Style Testimonial designation style start
$this->start_controls_section(
'testimonial_clientrating_style',
[
'label' => __( 'Rating', 'woolentor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'testimonial_clientrating_color',
[
'label' => __( 'Color', 'woolentor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .wl-customer-testimonal .clint-info .rating' => 'color: {{VALUE}};',
],
]
);
$this->end_controls_section(); // Style Testimonial designation style end
}
protected function render( $instance = [] ) {
$settings = $this->get_settings_for_display();
$column = $this->get_settings_for_display('column');
$this->add_render_attribute( 'review_area_attr', 'class', 'wl-customer-review wlb-review-style-'.$settings['review_layout'] );
$collumval = 'wl-col-6';
if( $column !='' ){
$collumval = 'wl-col-'.$column;
}
// Generate review
$review_list = [];
if( $settings['review_type'] === 'custom' ){
foreach ( $settings['review_list'] as $review ){
$review_list[] = array(
'image' => Group_Control_Image_Size::get_attachment_image_html( $review, 'client_imagesize', 'client_image' ),
'name' => $review['client_name'],
'designation' => $review['client_designation'],
'ratting' => $review['client_rating'],
'message' => $review['client_say'],
);
}
}
echo '<div '.$this->get_render_attribute_string( 'review_area_attr' ).'>';
echo '<div class="wl-row '.( $settings['no_gutters'] === 'yes' ? 'wlno-gutters' : '' ).'">';
?>
<?php foreach ( $review_list as $review ): ?>
<div class="<?php echo esc_attr( $collumval ); ?>">
<?php if( $settings['review_layout'] == 2 || $settings['review_layout'] == 3 ): ?>
<div class="wl-customer-testimonal">
<?php
if( $review['image'] ){
echo $review['image']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
?>
<div class="content">
<?php
if( !empty($review['message']) ){
echo '<p>'.esc_html__( $review['message'],'woolentor' ).'</p>';
}
?>
<div class="clint-info">
<?php
if( !empty( $review['name'] ) ){
echo '<h4>'.esc_html__( $review['name'],'woolentor' ).'</h4>';
}
if( !empty( $review['designation'] ) ){
echo '<span>'.esc_html__( $review['designation'],'woolentor' ).'</span>';
}
// Rating
if( !empty( $review['ratting'] ) ){
$this->ratting( $review['ratting'] );
}
?>
</div>
</div>
</div>
<?php elseif( $settings['review_layout'] == 4 ): ?>
<div class="wl-customer-testimonal">
<div class="content">
<?php
if( !empty($review['message']) ){
echo '<p>'.esc_html__( $review['message'],'woolentor' ).'</p>';
}
?>
<div class="triangle"></div>
</div>
<div class="clint-info">
<?php
if( $review['image'] ){
echo $review['image']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
if( !empty( $review['name'] ) ){
echo '<h4>'.esc_html__( $review['name'],'woolentor' ).'</h4>';
}
if( !empty( $review['designation'] ) ){
echo '<span>'.esc_html__( $review['designation'],'woolentor' ).'</span>';
}
// Rating
if( !empty( $review['ratting'] ) ){
$this->ratting( $review['ratting'] );
}
?>
</div>
</div>
<?php else:?>
<div class="wl-customer-testimonal">
<div class="content">
<?php
if( $review['image'] ){
echo $review['image']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
?>
<div class="clint-info">
<?php
if( !empty( $review['name'] ) ){
echo '<h4>'.esc_html__( $review['name'],'woolentor' ).'</h4>';
}
if( !empty( $review['designation'] ) ){
echo '<span>'.esc_html__( $review['designation'],'woolentor' ).'</span>';
}
// Rating
if( !empty( $review['ratting'] ) ){
$this->ratting( $review['ratting'] );
}
?>
</div>
</div>
<?php
if( !empty($review['message']) ){
echo '<p>'.esc_html__( $review['message'],'woolentor' ).'</p>';
}
?>
</div>
<?php endif; ?>
</div>
<?php endforeach;
echo '</div></div>';
}
public function ratting( $ratting_num ){
if( !empty( $ratting_num ) ){
$rating = $ratting_num;
$rating_whole = floor( $ratting_num );
$rating_fraction = $rating - $rating_whole;
echo '<ul class="rating">';
for($i = 1; $i <= 5; $i++){
if( $i <= $rating_whole ){
echo '<li><i class="fas fa-star"></i></li>';
} else {
if( $rating_fraction != 0 ){
echo '<li><i class="fas fa-star-half-alt"></i></li>';
$rating_fraction = 0;
} else {
echo '<li><i class="far fa-star empty"></i></li>';
}
}
}
echo '</ul>';
}
}
}