| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560 |
- <?php
- namespace Elementor;
- if ( ! defined( 'ABSPATH' ) ) {
- exit; // Exit if accessed directly.
- }
- /**
- * Elementor testimonial widget.
- *
- * Elementor widget that displays customer testimonials that show social proof.
- *
- * @since 1.0.0
- */
- class Widget_Testimonial extends Widget_Base {
- /**
- * Get widget name.
- *
- * Retrieve testimonial widget name.
- *
- * @since 1.0.0
- * @access public
- *
- * @return string Widget name.
- */
- public function get_name() {
- return 'testimonial';
- }
- /**
- * Get widget title.
- *
- * Retrieve testimonial widget title.
- *
- * @since 1.0.0
- * @access public
- *
- * @return string Widget title.
- */
- public function get_title() {
- return __( 'Testimonial', 'elementor' );
- }
- /**
- * Get widget icon.
- *
- * Retrieve testimonial widget icon.
- *
- * @since 1.0.0
- * @access public
- *
- * @return string Widget icon.
- */
- public function get_icon() {
- return 'eicon-testimonial';
- }
- /**
- * Get widget keywords.
- *
- * Retrieve the list of keywords the widget belongs to.
- *
- * @since 2.1.0
- * @access public
- *
- * @return array Widget keywords.
- */
- public function get_keywords() {
- return [ 'testimonial', 'blockquote' ];
- }
- /**
- * Register testimonial widget controls.
- *
- * Adds different input fields to allow the user to change and customize the widget settings.
- *
- * @since 1.0.0
- * @access protected
- */
- protected function _register_controls() {
- $this->start_controls_section(
- 'section_testimonial',
- [
- 'label' => __( 'Testimonial', 'elementor' ),
- ]
- );
- $this->add_control(
- 'testimonial_content',
- [
- 'label' => __( 'Content', 'elementor' ),
- 'type' => Controls_Manager::TEXTAREA,
- 'dynamic' => [
- 'active' => true,
- ],
- 'rows' => '10',
- 'default' => 'Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.',
- ]
- );
- $this->add_control(
- 'testimonial_image',
- [
- 'label' => __( 'Choose Image', 'elementor' ),
- 'type' => Controls_Manager::MEDIA,
- 'default' => [
- 'url' => Utils::get_placeholder_image_src(),
- ],
- ]
- );
- $this->add_group_control(
- Group_Control_Image_Size::get_type(),
- [
- 'name' => 'testimonial_image', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `testimonial_image_size` and `testimonial_image_custom_dimension`.
- 'default' => 'full',
- 'separator' => 'none',
- ]
- );
- $this->add_control(
- 'testimonial_name',
- [
- 'label' => __( 'Name', 'elementor' ),
- 'type' => Controls_Manager::TEXT,
- 'dynamic' => [
- 'active' => true,
- ],
- 'default' => 'John Doe',
- ]
- );
- $this->add_control(
- 'testimonial_job',
- [
- 'label' => __( 'Job', 'elementor' ),
- 'type' => Controls_Manager::TEXT,
- 'dynamic' => [
- 'active' => true,
- ],
- 'default' => 'Designer',
- ]
- );
- $this->add_control(
- 'link',
- [
- 'label' => __( 'Link to', 'elementor' ),
- 'type' => Controls_Manager::URL,
- 'placeholder' => __( 'https://your-link.com', 'elementor' ),
- ]
- );
- $this->add_control(
- 'testimonial_image_position',
- [
- 'label' => __( 'Image Position', 'elementor' ),
- 'type' => Controls_Manager::SELECT,
- 'default' => 'aside',
- 'options' => [
- 'aside' => __( 'Aside', 'elementor' ),
- 'top' => __( 'Top', 'elementor' ),
- ],
- 'condition' => [
- 'testimonial_image[url]!' => '',
- ],
- 'separator' => 'before',
- 'style_transfer' => true,
- ]
- );
- $this->add_control(
- 'testimonial_alignment',
- [
- 'label' => __( 'Alignment', 'elementor' ),
- 'type' => Controls_Manager::CHOOSE,
- 'default' => 'center',
- 'options' => [
- 'left' => [
- 'title' => __( 'Left', 'elementor' ),
- 'icon' => 'fa fa-align-left',
- ],
- 'center' => [
- 'title' => __( 'Center', 'elementor' ),
- 'icon' => 'fa fa-align-center',
- ],
- 'right' => [
- 'title' => __( 'Right', 'elementor' ),
- 'icon' => 'fa fa-align-right',
- ],
- ],
- 'label_block' => false,
- 'style_transfer' => true,
- ]
- );
- $this->add_control(
- 'view',
- [
- 'label' => __( 'View', 'elementor' ),
- 'type' => Controls_Manager::HIDDEN,
- 'default' => 'traditional',
- ]
- );
- $this->end_controls_section();
- // Content.
- $this->start_controls_section(
- 'section_style_testimonial_content',
- [
- 'label' => __( 'Content', 'elementor' ),
- 'tab' => Controls_Manager::TAB_STYLE,
- ]
- );
- $this->add_control(
- 'content_content_color',
- [
- 'label' => __( 'Text Color', 'elementor' ),
- 'type' => Controls_Manager::COLOR,
- 'scheme' => [
- 'type' => Scheme_Color::get_type(),
- 'value' => Scheme_Color::COLOR_3,
- ],
- 'default' => '',
- 'selectors' => [
- '{{WRAPPER}} .elementor-testimonial-content' => 'color: {{VALUE}};',
- ],
- ]
- );
- $this->add_group_control(
- Group_Control_Typography::get_type(),
- [
- 'name' => 'content_typography',
- 'scheme' => Scheme_Typography::TYPOGRAPHY_3,
- 'selector' => '{{WRAPPER}} .elementor-testimonial-content',
- ]
- );
- $this->end_controls_section();
- // Image.
- $this->start_controls_section(
- 'section_style_testimonial_image',
- [
- 'label' => __( 'Image', 'elementor' ),
- 'tab' => Controls_Manager::TAB_STYLE,
- 'condition' => [
- 'testimonial_image[url]!' => '',
- ],
- ]
- );
- $this->add_control(
- 'image_size',
- [
- 'label' => __( 'Image Size', 'elementor' ),
- 'type' => Controls_Manager::SLIDER,
- 'size_units' => [ 'px' ],
- 'range' => [
- 'px' => [
- 'min' => 20,
- 'max' => 200,
- ],
- ],
- 'selectors' => [
- '{{WRAPPER}} .elementor-testimonial-wrapper .elementor-testimonial-image img' => 'width: {{SIZE}}{{UNIT}};height: {{SIZE}}{{UNIT}};',
- ],
- ]
- );
- $this->add_group_control(
- Group_Control_Border::get_type(),
- [
- 'name' => 'image_border',
- 'selector' => '{{WRAPPER}} .elementor-testimonial-wrapper .elementor-testimonial-image img',
- 'separator' => 'before',
- ]
- );
- $this->add_control(
- 'image_border_radius',
- [
- 'label' => __( 'Border Radius', 'elementor' ),
- 'type' => Controls_Manager::DIMENSIONS,
- 'size_units' => [ 'px', '%' ],
- 'selectors' => [
- '{{WRAPPER}} .elementor-testimonial-wrapper .elementor-testimonial-image img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
- ],
- ]
- );
- $this->end_controls_section();
- // Name.
- $this->start_controls_section(
- 'section_style_testimonial_name',
- [
- 'label' => __( 'Name', 'elementor' ),
- 'tab' => Controls_Manager::TAB_STYLE,
- ]
- );
- $this->add_control(
- 'name_text_color',
- [
- 'label' => __( 'Text Color', 'elementor' ),
- 'type' => Controls_Manager::COLOR,
- 'scheme' => [
- 'type' => Scheme_Color::get_type(),
- 'value' => Scheme_Color::COLOR_1,
- ],
- 'default' => '',
- 'selectors' => [
- '{{WRAPPER}} .elementor-testimonial-name' => 'color: {{VALUE}};',
- ],
- ]
- );
- $this->add_group_control(
- Group_Control_Typography::get_type(),
- [
- 'name' => 'name_typography',
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
- 'selector' => '{{WRAPPER}} .elementor-testimonial-name',
- ]
- );
- $this->end_controls_section();
- // Job.
- $this->start_controls_section(
- 'section_style_testimonial_job',
- [
- 'label' => __( 'Job', 'elementor' ),
- 'tab' => Controls_Manager::TAB_STYLE,
- ]
- );
- $this->add_control(
- 'job_text_color',
- [
- 'label' => __( 'Text Color', 'elementor' ),
- 'type' => Controls_Manager::COLOR,
- 'scheme' => [
- 'type' => Scheme_Color::get_type(),
- 'value' => Scheme_Color::COLOR_2,
- ],
- 'default' => '',
- 'selectors' => [
- '{{WRAPPER}} .elementor-testimonial-job' => 'color: {{VALUE}};',
- ],
- ]
- );
- $this->add_group_control(
- Group_Control_Typography::get_type(),
- [
- 'name' => 'job_typography',
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
- 'selector' => '{{WRAPPER}} .elementor-testimonial-job',
- ]
- );
- $this->end_controls_section();
- }
- /**
- * Render testimonial widget output on the frontend.
- *
- * Written in PHP and used to generate the final HTML.
- *
- * @since 1.0.0
- * @access protected
- */
- protected function render() {
- $settings = $this->get_settings_for_display();
- $this->add_render_attribute( 'wrapper', 'class', 'elementor-testimonial-wrapper' );
- if ( $settings['testimonial_alignment'] ) {
- $this->add_render_attribute( 'wrapper', 'class', 'elementor-testimonial-text-align-' . $settings['testimonial_alignment'] );
- }
- $this->add_render_attribute( 'meta', 'class', 'elementor-testimonial-meta' );
- if ( $settings['testimonial_image']['url'] ) {
- $this->add_render_attribute( 'meta', 'class', 'elementor-has-image' );
- }
- if ( $settings['testimonial_image_position'] ) {
- $this->add_render_attribute( 'meta', 'class', 'elementor-testimonial-image-position-' . $settings['testimonial_image_position'] );
- }
- $has_content = ! ! $settings['testimonial_content'];
- $has_image = ! ! $settings['testimonial_image']['url'];
- $has_name = ! ! $settings['testimonial_name'];
- $has_job = ! ! $settings['testimonial_job'];
- if ( ! $has_content && ! $has_image && ! $has_name && ! $has_job ) {
- return;
- }
- if ( ! empty( $settings['link']['url'] ) ) {
- $this->add_render_attribute( 'link', 'href', $settings['link']['url'] );
- if ( $settings['link']['is_external'] ) {
- $this->add_render_attribute( 'link', 'target', '_blank' );
- }
- if ( ! empty( $settings['link']['nofollow'] ) ) {
- $this->add_render_attribute( 'link', 'rel', 'nofollow' );
- }
- }
- ?>
- <div <?php echo $this->get_render_attribute_string( 'wrapper' ); ?>>
- <?php
- if ( $has_content ) :
- $this->add_render_attribute( 'testimonial_content', 'class', 'elementor-testimonial-content' );
- $this->add_inline_editing_attributes( 'testimonial_content' );
- ?>
- <div <?php echo $this->get_render_attribute_string( 'testimonial_content' ); ?>><?php echo $settings['testimonial_content']; ?></div>
- <?php endif; ?>
- <?php if ( $has_image || $has_name || $has_job ) : ?>
- <div <?php echo $this->get_render_attribute_string( 'meta' ); ?>>
- <div class="elementor-testimonial-meta-inner">
- <?php if ( $has_image ) : ?>
- <div class="elementor-testimonial-image">
- <?php
- $image_html = Group_Control_Image_Size::get_attachment_image_html( $settings, 'testimonial_image' );
- if ( ! empty( $settings['link']['url'] ) ) :
- $image_html = '<a ' . $this->get_render_attribute_string( 'link' ) . '>' . $image_html . '</a>';
- endif;
- echo $image_html;
- ?>
- </div>
- <?php endif; ?>
- <?php if ( $has_name || $has_job ) : ?>
- <div class="elementor-testimonial-details">
- <?php
- if ( $has_name ) :
- $this->add_render_attribute( 'testimonial_name', 'class', 'elementor-testimonial-name' );
- $this->add_inline_editing_attributes( 'testimonial_name', 'none' );
- $testimonial_name_html = $settings['testimonial_name'];
- if ( ! empty( $settings['link']['url'] ) ) :
- $testimonial_name_html = '<a ' . $this->get_render_attribute_string( 'link' ) . '>' . $testimonial_name_html . '</a>';
- endif;
- ?>
- <div <?php echo $this->get_render_attribute_string( 'testimonial_name' ); ?>><?php echo $testimonial_name_html; ?></div>
- <?php endif; ?>
- <?php
- if ( $has_job ) :
- $this->add_render_attribute( 'testimonial_job', 'class', 'elementor-testimonial-job' );
- $this->add_inline_editing_attributes( 'testimonial_job', 'none' );
- $testimonial_job_html = $settings['testimonial_job'];
- if ( ! empty( $settings['link']['url'] ) ) :
- $testimonial_job_html = '<a ' . $this->get_render_attribute_string( 'link' ) . '>' . $testimonial_job_html . '</a>';
- endif;
- ?>
- <div <?php echo $this->get_render_attribute_string( 'testimonial_job' ); ?>><?php echo $testimonial_job_html; ?></div>
- <?php endif; ?>
- </div>
- <?php endif; ?>
- </div>
- </div>
- <?php endif; ?>
- </div>
- <?php
- }
- /**
- * Render testimonial widget output in the editor.
- *
- * Written as a Backbone JavaScript template and used to generate the live preview.
- *
- * @since 1.0.0
- * @access protected
- */
- protected function _content_template() {
- ?>
- <#
- var image = {
- id: settings.testimonial_image.id,
- url: settings.testimonial_image.url,
- size: settings.testimonial_image_size,
- dimension: settings.testimonial_image_custom_dimension,
- model: view.getEditModel()
- };
- var imageUrl = false, hasImage = '';
- if ( '' !== settings.testimonial_image.url ) {
- imageUrl = elementor.imagesManager.getImageUrl( image );
- hasImage = ' elementor-has-image';
- var imageHtml = '<img src="' + imageUrl + '" alt="testimonial" />';
- if ( settings.link.url ) {
- imageHtml = '<a href="' + settings.link.url + '">' + imageHtml + '</a>';
- }
- }
- var testimonial_alignment = settings.testimonial_alignment ? ' elementor-testimonial-text-align-' + settings.testimonial_alignment : '';
- var testimonial_image_position = settings.testimonial_image_position ? ' elementor-testimonial-image-position-' + settings.testimonial_image_position : '';
- #>
- <div class="elementor-testimonial-wrapper{{ testimonial_alignment }}">
- <# if ( '' !== settings.testimonial_content ) {
- view.addRenderAttribute( 'testimonial_content', 'class', 'elementor-testimonial-content' );
- view.addInlineEditingAttributes( 'testimonial_content' );
- #>
- <div {{{ view.getRenderAttributeString( 'testimonial_content' ) }}}>{{{ settings.testimonial_content }}}</div>
- <# } #>
- <div class="elementor-testimonial-meta{{ hasImage }}{{ testimonial_image_position }}">
- <div class="elementor-testimonial-meta-inner">
- <# if ( imageUrl ) { #>
- <div class="elementor-testimonial-image">{{{ imageHtml }}}</div>
- <# } #>
- <div class="elementor-testimonial-details">
- <# if ( '' !== settings.testimonial_name ) {
- view.addRenderAttribute( 'testimonial_name', 'class', 'elementor-testimonial-name' );
- view.addInlineEditingAttributes( 'testimonial_name', 'none' );
- var testimonialNameHtml = settings.testimonial_name;
- if ( settings.link.url ) {
- testimonialNameHtml = '<a href="' + settings.link.url + '">' + testimonialNameHtml + '</a>';
- }
- #>
- <div {{{ view.getRenderAttributeString( 'testimonial_name' ) }}}>{{{ testimonialNameHtml }}}</div>
- <# } #>
- <# if ( '' !== settings.testimonial_job ) {
- view.addRenderAttribute( 'testimonial_job', 'class', 'elementor-testimonial-job' );
- view.addInlineEditingAttributes( 'testimonial_job', 'none' );
- var testimonialJobHtml = settings.testimonial_job;
- if ( settings.link.url ) {
- testimonialJobHtml = '<a href="' + settings.link.url + '">' + testimonialJobHtml + '</a>';
- }
- #>
- <div {{{ view.getRenderAttributeString( 'testimonial_job' ) }}}>{{{ testimonialJobHtml }}}</div>
- <# } #>
- </div>
- </div>
- </div>
- </div>
- <?php
- }
- }
|