shell bypass 403
<?php
namespace ElementorPro\Modules\Carousel\Widgets;
use Elementor\Controls_Manager;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Typography;
use Elementor\Icons_Manager;
use Elementor\Repeater;
use Elementor\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Reviews extends Base {
public function get_name() {
return 'reviews';
}
public function get_title() {
return esc_html__( 'Reviews', 'elementor-pro' );
}
public function get_icon() {
return 'eicon-review';
}
public function get_keywords() {
return [ 'reviews', 'social', 'rating', 'testimonial', 'carousel' ];
}
public function get_inline_css_depends() {
$slides = $this->get_settings_for_display( 'slides' );
foreach ( $slides as $slide ) {
if ( $slide['rating'] ) {
return [
[
'name' => 'star-rating',
'is_core_dependency' => true,
],
];
}
}
return [];
}
protected function register_controls() {
parent::register_controls();
$this->update_control(
'slide_padding',
[
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__header' => 'padding-top: {{TOP}}{{UNIT}}; padding-left: {{LEFT}}{{UNIT}}; padding-right: {{RIGHT}}{{UNIT}};',
'{{WRAPPER}} .elementor-testimonial__content' => 'padding-bottom: {{BOTTOM}}{{UNIT}}; padding-left: {{LEFT}}{{UNIT}}; padding-right: {{RIGHT}}{{UNIT}};',
],
]
);
$this->start_injection( [
'of' => 'slide_padding',
] );
$this->add_control(
'heading_header',
[
'label' => esc_html__( 'Header', 'elementor-pro' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
]
);
$this->add_control(
'header_background_color',
[
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__header' => 'background-color: {{VALUE}}',
],
]
);
$this->add_responsive_control(
'content_gap',
[
'label' => esc_html__( 'Gap', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'max' => 100,
],
'em' => [
'max' => 10,
],
'rem' => [
'max' => 10,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__header' => 'padding-block-end: calc( {{SIZE}}{{UNIT}} / 2 )',
'{{WRAPPER}} .elementor-testimonial__content' => 'padding-block-start: calc( {{SIZE}}{{UNIT}} / 2 )',
],
]
);
$this->add_control(
'show_separator',
[
'label' => esc_html__( 'Separator', 'elementor-pro' ),
'type' => Controls_Manager::SWITCHER,
'label_off' => esc_html__( 'Hide', 'elementor-pro' ),
'label_on' => esc_html__( 'Show', 'elementor-pro' ),
'default' => 'has-separator',
'return_value' => 'has-separator',
'prefix_class' => 'elementor-review--',
'separator' => 'before',
]
);
$this->add_control(
'separator_color',
[
'label' => esc_html__( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__header' => 'border-block-end-color: {{VALUE}}',
],
'condition' => [
'show_separator!' => '',
],
]
);
$this->add_control(
'separator_size',
[
'label' => esc_html__( 'Size', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'max' => 20,
],
'em' => [
'max' => 2,
],
'rem' => [
'max' => 2,
],
],
'condition' => [
'show_separator!' => '',
],
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__header' => 'border-block-end-width: {{SIZE}}{{UNIT}}',
],
]
);
$this->end_injection();
$this->start_injection( [
'at' => 'before',
'of' => 'section_navigation',
] );
$this->start_controls_section(
'section_content_style',
[
'label' => esc_html__( 'Text', 'elementor-pro' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'name_title_style',
[
'label' => esc_html__( 'Name', 'elementor-pro' ),
'type' => Controls_Manager::HEADING,
]
);
$this->add_control(
'name_color',
[
'label' => esc_html__( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__name' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'name_typography',
'selector' => '{{WRAPPER}} .elementor-testimonial__header, {{WRAPPER}} .elementor-testimonial__name',
'global' => [
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
],
]
);
$this->add_control(
'heading_title_style',
[
'label' => esc_html__( 'Title', 'elementor-pro' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
]
);
$this->add_control(
'title_color',
[
'label' => esc_html__( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__title' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'selector' => '{{WRAPPER}} .elementor-testimonial__title',
]
);
$this->add_control(
'heading_review_style',
[
'label' => esc_html__( 'Review', 'elementor-pro' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
]
);
$this->add_control(
'content_color',
[
'label' => esc_html__( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__text' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'content_typography',
'selector' => '{{WRAPPER}} .elementor-testimonial__text',
'global' => [
'default' => Global_Typography::TYPOGRAPHY_TEXT,
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_image_style',
[
'label' => esc_html__( 'Image', 'elementor-pro' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'image_size',
[
'label' => esc_html__( 'Size', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'max' => 100,
],
'em' => [
'max' => 10,
],
'rem' => [
'max' => 10,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__image img' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_responsive_control(
'image_gap',
[
'label' => esc_html__( 'Gap', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'max' => 100,
],
'em' => [
'max' => 10,
],
'rem' => [
'max' => 10,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__image + cite' => 'margin-inline-start: {{SIZE}}{{UNIT}}; margin-inline-end: 0;',
],
]
);
$this->add_control(
'image_border_radius',
[
'label' => esc_html__( 'Border Radius', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__image img' => 'border-radius: {{SIZE}}{{UNIT}}',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_icon_style',
[
'label' => esc_html__( 'Icon', 'elementor-pro' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'icon_color',
[
'label' => esc_html__( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => 'default',
'options' => [
'default' => esc_html__( 'Official', 'elementor-pro' ),
'custom' => esc_html__( 'Custom', 'elementor-pro' ),
],
]
);
$this->add_control(
'icon_custom_color',
[
'label' => esc_html__( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'condition' => [
'icon_color' => 'custom',
],
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__icon:not(.elementor-testimonial__rating)' => 'color: {{VALUE}};',
'{{WRAPPER}} .elementor-testimonial__icon:not(.elementor-testimonial__rating) svg' => 'fill: {{VALUE}};',
],
]
);
$this->add_responsive_control(
'icon_size',
[
'label' => esc_html__( 'Size', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'max' => 100,
],
'em' => [
'max' => 10,
],
'rem' => [
'max' => 10,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-testimonial__icon' => 'font-size: {{SIZE}}{{UNIT}}',
'{{WRAPPER}} .elementor-testimonial__icon svg' => 'width: {{SIZE}}{{UNIT}}',
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_rating_style',
[
'label' => esc_html__( 'Rating', 'elementor-pro' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'star_style',
[
'label' => esc_html__( 'Icon', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'options' => [
'star_fontawesome' => 'Font Awesome',
'star_unicode' => 'Unicode',
],
'default' => 'star_fontawesome',
'render_type' => 'template',
'prefix_class' => 'elementor--star-style-',
'separator' => 'before',
]
);
$this->add_control(
'unmarked_star_style',
[
'label' => esc_html__( 'Unmarked Style', 'elementor-pro' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'solid' => [
'title' => esc_html__( 'Solid', 'elementor-pro' ),
'icon' => 'eicon-star',
],
'outline' => [
'title' => esc_html__( 'Outline', 'elementor-pro' ),
'icon' => 'eicon-star-o',
],
],
'default' => 'solid',
]
);
$this->add_control(
'star_size',
[
'label' => esc_html__( 'Size', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'max' => 100,
],
'em' => [
'max' => 10,
],
'rem' => [
'max' => 10,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-star-rating' => 'font-size: {{SIZE}}{{UNIT}}',
],
'separator' => 'before',
]
);
$this->add_control(
'star_space',
[
'label' => esc_html__( 'Spacing', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'max' => 50,
],
'em' => [
'max' => 5,
],
'rem' => [
'max' => 5,
],
],
'selectors' => [
'{{WRAPPER}} .elementor-star-rating i:not(:last-of-type)' => 'margin-inline-end: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_control(
'stars_color',
[
'label' => esc_html__( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-star-rating i:before' => 'color: {{VALUE}}',
],
'separator' => 'before',
]
);
$this->add_control(
'stars_unmarked_color',
[
'label' => esc_html__( 'Unmarked Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-star-rating i' => 'color: {{VALUE}}',
],
]
);
$this->end_controls_section();
$this->end_injection();
$this->update_responsive_control(
'width',
[
'selectors' => [
'{{WRAPPER}}.elementor-arrows-yes .elementor-main-swiper' => 'width: calc( {{SIZE}}{{UNIT}} - 40px )',
'{{WRAPPER}} .elementor-main-swiper' => 'width: {{SIZE}}{{UNIT}}',
],
]
);
$this->update_responsive_control(
'slides_per_view',
[
'condition' => null,
]
);
$this->update_control(
'slides_to_scroll',
[
'condition' => null,
]
);
$this->remove_control( 'effect' );
$this->remove_responsive_control( 'height' );
$this->remove_control( 'pagination_position' );
}
protected function add_repeater_controls( Repeater $repeater ) {
$repeater->add_control(
'image',
[
'label' => esc_html__( 'Image', 'elementor-pro' ),
'type' => Controls_Manager::MEDIA,
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
'dynamic' => [
'active' => true,
],
]
);
$repeater->add_control(
'name',
[
'label' => esc_html__( 'Name', 'elementor-pro' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__( 'John Doe', 'elementor-pro' ),
'dynamic' => [
'active' => true,
],
'ai' => [
'active' => false,
],
]
);
$repeater->add_control(
'title',
[
'label' => esc_html__( 'Title', 'elementor-pro' ),
'type' => Controls_Manager::TEXT,
'default' => '@username',
'dynamic' => [
'active' => true,
],
]
);
$repeater->add_control(
'rating',
[
'label' => esc_html__( 'Rating', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'min' => 0,
'max' => 5,
'step' => 0.1,
'dynamic' => [
'active' => true,
],
]
);
$repeater->add_control(
'selected_social_icon',
[
'label' => esc_html__( 'Icon', 'elementor-pro' ),
'type' => Controls_Manager::ICONS,
'fa4compatibility' => 'social_icon',
'default' => [
'value' => 'fab fa-twitter',
'library' => 'fa-brands',
],
'recommended' => [
'fa-solid' => [
'rss',
'shopping-cart',
'thumbtack',
],
'fa-brands' => [
'android',
'apple',
'behance',
'bitbucket',
'codepen',
'delicious',
'digg',
'dribbble',
'envelope',
'facebook',
'flickr',
'foursquare',
'github',
'google-plus',
'houzz',
'instagram',
'jsfiddle',
'linkedin',
'medium',
'meetup',
'mix',
'mixcloud',
'odnoklassniki',
'pinterest',
'product-hunt',
'reddit',
'skype',
'slideshare',
'snapchat',
'soundcloud',
'spotify',
'stack-overflow',
'steam',
'telegram',
'threads',
'tripadvisor',
'tumblr',
'twitch',
'twitter',
'vimeo',
'fa-vk',
'weibo',
'weixin',
'whatsapp',
'wordpress',
'x-twitter',
'xing',
'yelp',
'youtube',
'500px',
],
],
]
);
$repeater->add_control(
'link',
[
'label' => esc_html__( 'Link', 'elementor-pro' ),
'type' => Controls_Manager::URL,
'dynamic' => [
'active' => true,
],
]
);
$repeater->add_control(
'content',
[
'label' => esc_html__( 'Review', 'elementor-pro' ),
'type' => Controls_Manager::TEXTAREA,
'default' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'elementor-pro' ),
'dynamic' => [
'active' => true,
],
]
);
}
protected function get_repeater_defaults() {
$placeholder_image_src = Utils::get_placeholder_image_src();
return [
[
'content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'elementor-pro' ),
'name' => esc_html__( 'John Doe', 'elementor-pro' ),
'title' => '@username',
'image' => [
'url' => $placeholder_image_src,
],
],
[
'content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'elementor-pro' ),
'name' => esc_html__( 'John Doe', 'elementor-pro' ),
'title' => '@username',
'image' => [
'url' => $placeholder_image_src,
],
],
[
'content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'elementor-pro' ),
'name' => esc_html__( 'John Doe', 'elementor-pro' ),
'title' => '@username',
'image' => [
'url' => $placeholder_image_src,
],
],
];
}
private function print_cite( $slide, $settings ) {
if ( empty( $slide['name'] ) && empty( $slide['title'] ) ) {
return '';
}
$html = '<cite class="elementor-testimonial__cite">';
if ( ! empty( $slide['name'] ) ) {
$html .= '<span class="elementor-testimonial__name">' . $slide['name'] . '</span>';
}
if ( ! empty( $slide['rating'] ) ) {
$html .= $this->render_stars( $slide, $settings );
}
if ( ! empty( $slide['title'] ) ) {
$html .= '<span class="elementor-testimonial__title">' . $slide['title'] . '</span>';
}
$html .= '</cite>';
echo wp_kses_post( $html );
}
protected function render_stars( $slide, $settings ) {
$icon = '';
if ( 'star_fontawesome' === $settings['star_style'] ) {
if ( 'outline' === $settings['unmarked_star_style'] ) {
$icon = '';
}
} elseif ( 'star_unicode' === $settings['star_style'] ) {
$icon = '★';
if ( 'outline' === $settings['unmarked_star_style'] ) {
$icon = '☆';
}
}
$rating = (float) $slide['rating'] > 5 ? 5 : $slide['rating'];
$floored_rating = (int) $rating;
$stars_html = '';
for ( $stars = 1; $stars <= 5; $stars++ ) {
if ( $stars <= $floored_rating ) {
$stars_html .= '<i class="elementor-star-full">' . $icon . '</i>';
} elseif ( $floored_rating + 1 === $stars && $rating !== $floored_rating ) {
$stars_html .= '<i class="elementor-star-' . ( $rating - $floored_rating ) * 10 . '">' . $icon . '</i>';
} else {
$stars_html .= '<i class="elementor-star-empty">' . $icon . '</i>';
}
}
return '<div class="elementor-star-rating">' . $stars_html . '</div>';
}
private function print_icon( $slide, $element_key ) {
$migration_allowed = Icons_Manager::is_migration_allowed();
if ( ! isset( $slide['social_icon'] ) && ! $migration_allowed ) {
// add old default
$slide['social_icon'] = 'fa fa-twitter';
}
if ( empty( $slide['social_icon'] ) && empty( $slide['selected_social_icon'] ) ) {
return '';
}
$migrated = isset( $slide['__fa4_migrated']['selected_social_icon'] );
$is_new = empty( $slide['social_icon'] ) && $migration_allowed;
$social = '';
if ( $is_new || $migrated ) {
ob_start();
Icons_Manager::render_icon( $slide['selected_social_icon'], [ 'aria-hidden' => 'true' ] );
$icon = ob_get_clean();
} else {
$icon = '<i class="' . esc_attr( $slide['social_icon'] ) . '" aria-hidden="true"></i>';
}
if ( ! empty( $slide['social_icon'] ) ) {
$social = str_replace( 'fa fa-', '', $slide['social_icon'] );
}
if ( ( $is_new || $migrated ) && 'svg' !== $slide['selected_social_icon']['library'] ) {
$social = explode( ' ', $slide['selected_social_icon']['value'], 2 );
if ( empty( $social[1] ) ) {
$social = '';
} else {
$social = str_replace( 'fa-', '', $social[1] );
}
}
if ( 'svg' === $slide['selected_social_icon']['library'] ) {
$social = '';
}
$this->add_render_attribute( 'icon_wrapper_' . $element_key, 'class', 'elementor-testimonial__icon elementor-icon' );
$icon .= '<span class="elementor-screen-only">' . esc_html__( 'Read More', 'elementor-pro' ) . '</span>';
$this->add_render_attribute( 'icon_wrapper_' . $element_key, 'class', 'elementor-icon-' . $social );
// Icon is escaped above, get_render_attribute_string() is safe
echo '<div ' . $this->get_render_attribute_string( 'icon_wrapper_' . $element_key ) . '>' . $icon . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
protected function print_slide( array $slide, array $settings, $element_key ) {
$lazyload = 'yes' === $this->get_settings( 'lazyload' );
$this->add_render_attribute( $element_key . '-testimonial', [
'class' => 'elementor-testimonial',
] );
$this->add_render_attribute( $element_key . '-testimonial', [
'class' => 'elementor-repeater-item-' . $slide['_id'],
] );
if ( ! empty( $slide['image']['url'] ) ) {
$img_src = $this->get_slide_image_url( $slide, $settings );
if ( $lazyload ) {
$img_attribute['class'] = 'swiper-lazy';
$img_attribute['data-src'] = $img_src;
} else {
$img_attribute['src'] = $img_src;
}
$img_attribute['alt'] = $this->get_slide_image_alt_attribute( $slide );
$this->add_render_attribute( $element_key . '-image', $img_attribute );
}
?>
<div <?php $this->print_render_attribute_string( $element_key . '-testimonial' ); ?>>
<?php if ( $slide['image']['url'] || ! empty( $slide['name'] ) || ! empty( $slide['title'] ) ) :
$link_url = empty( $slide['link']['url'] ) ? false : $slide['link']['url'];
$header_tag = ! empty( $link_url ) ? 'a' : 'div';
$header_element = 'header_' . $slide['_id'];
$this->add_render_attribute( $header_element, 'class', 'elementor-testimonial__header' );
if ( ! empty( $link_url ) ) {
$this->add_link_attributes( $header_element, $slide['link'] );
}
?>
<<?php Utils::print_validated_html_tag( $header_tag ); ?> <?php $this->print_render_attribute_string( $header_element ); ?>>
<?php if ( $slide['image']['url'] ) : ?>
<div class="elementor-testimonial__image">
<img <?php $this->print_render_attribute_string( $element_key . '-image' ); ?>>
<?php if ( $lazyload ) : ?>
<div class="swiper-lazy-preloader"></div>
<?php endif; ?>
</div>
<?php endif; ?>
<?php $this->print_cite( $slide, $settings ); ?>
<?php $this->print_icon( $slide, $element_key ); ?>
</<?php Utils::print_validated_html_tag( $header_tag ); ?>>
<?php endif; ?>
<?php if ( $slide['content'] ) : ?>
<div class="elementor-testimonial__content">
<div class="elementor-testimonial__text">
<?php
// Main content allowed
echo $slide['content']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</div>
</div>
<?php endif; ?>
</div>
<?php
}
protected function render() {
$this->print_slider();
}
public function get_group_name() {
return 'carousel';
}
}