MAINHACK
<?php
if ( fusion_is_element_enabled( 'fusion_testimonials' ) ) {
if ( ! class_exists( 'FusionSC_Testimonials' ) ) {
/**
* Shortcode class.
*
* @package fusion-builder
* @since 1.0
*/
class FusionSC_Testimonials extends Fusion_Element {
/**
* The testimonials counter.
*
* @access private
* @since 1.0
* @var int
*/
private $testimonials_counter = 1;
/**
* Parent SC arguments.
*
* @access protected
* @since 1.0
* @var array
*/
protected $parent_args;
/**
* Child SC arguments.
*
* @access protected
* @since 1.0
* @var array
*/
protected $child_args;
/**
* Constructor.
*
* @access public
* @since 1.0
*/
public function __construct() {
parent::__construct();
add_filter( 'fusion_attr_testimonials-shortcode', array( $this, 'attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-testimonials', array( $this, 'testimonials_attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-quote', array( $this, 'quote_attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-blockquote', array( $this, 'blockquote_attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-review', array( $this, 'review_attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-thumbnail', array( $this, 'thumbnail_attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-image', array( $this, 'image_attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-author', array( $this, 'author_attr' ) );
add_filter( 'fusion_attr_testimonials-shortcode-pagination', array( $this, 'pagination_attr' ) );
add_shortcode( 'fusion_testimonials', array( $this, 'render_parent' ) );
add_shortcode( 'fusion_testimonial', array( $this, 'render_child' ) );
}
/**
* Render the parent shortcode.
*
* @access public
* @since 1.0
* @param array $args Shortcode parameters.
* @param string $content Content between shortcode.
* @return string HTML output.
*/
public function render_parent( $args, $content = '' ) {
global $fusion_settings;
$defaults = FusionBuilder::set_shortcode_defaults(
array(
'hide_on_mobile' => fusion_builder_default_visibility( 'string' ),
'class' => '',
'id' => '',
'backgroundcolor' => strtolower( $fusion_settings->get( 'testimonial_bg_color' ) ),
'design' => 'classic',
'random' => $fusion_settings->get( 'testimonials_random' ),
'textcolor' => strtolower( $fusion_settings->get( 'testimonial_text_color' ) ),
), $args
);
if ( 'yes' === $defaults['random'] || '1' === $defaults['random'] ) {
$defaults['random'] = 1;
} else {
$defaults['random'] = 0;
}
extract( $defaults );
$this->parent_args = $defaults;
$styles = '<style type="text/css" scoped="scoped">';
$styles .= '#fusion-testimonials-' . $this->testimonials_counter . ' a{border-color:' . $textcolor . ';}';
$styles .= '#fusion-testimonials-' . $this->testimonials_counter . ' a:hover, #fusion-testimonials-' . $this->testimonials_counter . ' .activeSlide{background-color: ' . $textcolor . ';}';
$styles .= '.fusion-testimonials.' . $design . '.fusion-testimonials-' . $this->testimonials_counter . ' .author:after{border-top-color:' . $backgroundcolor . ' !important;}';
$styles .= '</style>';
$pagination = '';
if ( 'clean' === $this->parent_args['design'] ) {
$pagination = sprintf( '<div %s></div>', FusionBuilder::attributes( 'testimonials-shortcode-pagination' ) );
}
$html = sprintf( '<div %s>%s<div %s>%s</div>%s</div>', FusionBuilder::attributes( 'testimonials-shortcode' ), $styles,
FusionBuilder::attributes( 'testimonials-shortcode-testimonials' ), do_shortcode( $content ), $pagination );
$this->testimonials_counter++;
return $html;
}
/**
* Builds the attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function attr() {
$attr = fusion_builder_visibility_atts( $this->parent_args['hide_on_mobile'], array(
'class' => 'fusion-testimonials ' . $this->parent_args['design'] . ' fusion-testimonials-' . $this->testimonials_counter,
) );
$attr['data-random'] = $this->parent_args['random'];
if ( $this->parent_args['class'] ) {
$attr['class'] .= ' ' . $this->parent_args['class'];
}
if ( $this->parent_args['id'] ) {
$attr['id'] = $this->parent_args['id'];
}
return $attr;
}
/**
* Builds the testimonials attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function testimonials_attr() {
return array(
'class' => 'reviews',
);
}
/**
* Render the child shortcode.
*
* @access public
* @since 1.0
* @param array $args Shortcode parameters.
* @param string $content Content between shortcode.
* @return string HTML output.
*/
public function render_child( $args, $content = '' ) {
$defaults = FusionBuilder::set_shortcode_defaults(
array(
'avatar' => 'male',
'company' => '',
'image' => '',
'image_border_radius' => '',
'link' => '',
'name' => '',
'target' => '_self',
'gender' => '', // Deprecated.
), $args
);
$defaults['image_border_radius'] = FusionBuilder::validate_shortcode_attr_value( $defaults['image_border_radius'], 'px' );
if ( 'round' === $defaults['image_border_radius'] ) {
$defaults['image_border_radius'] = '50%';
}
extract( $defaults );
$this->child_args = $defaults;
// Check for deprecated.
if ( $gender ) {
$this->child_args['avatar'] = $gender;
}
if ( 'clean' === $this->parent_args['design'] ) {
return $this->render_child_clean( $content );
}
return $this->render_child_classic( $content );
}
/**
* Render classic design.
*
* @access private
* @since 1.0
* @param string $content The content.
* @return string
*/
private function render_child_classic( $content ) {
global $fusion_library;
$inner_content = $thumbnail = $pic = '';
if ( $this->child_args['name'] ) {
if ( 'image' === $this->child_args['avatar'] && $this->child_args['image'] ) {
$image_id = $fusion_library->images->get_attachment_id_from_url( $this->child_args['image'] );
$this->child_args['alt'] = '';
if ( $image_id ) {
$this->child_args['alt'] = get_post_field( '_wp_attachment_image_alt', $image_id );
}
$pic = sprintf( '<img %s />', FusionBuilder::attributes( 'testimonials-shortcode-image' ) );
}
if ( 'image' === $this->child_args['avatar'] && ! $this->child_args['image'] ) {
$this->child_args['avatar'] = 'none';
}
if ( 'none' !== $this->child_args['avatar'] ) {
$thumbnail = sprintf( '<span %s>%s</span>', FusionBuilder::attributes( 'testimonials-shortcode-thumbnail' ), $pic );
}
$inner_content .= sprintf( '<div %s>%s<span %s>', FusionBuilder::attributes( 'testimonials-shortcode-author' ), $thumbnail, FusionBuilder::attributes( 'company-name' ) );
if ( $this->child_args['name'] ) {
$inner_content .= sprintf( '<strong>%s</strong>', $this->child_args['name'] );
}
if ( $this->child_args['name'] && $this->child_args['company'] ) {
$inner_content .= ', ';
}
if ( $this->child_args['company'] ) {
if ( ! empty( $this->child_args['link'] ) && $this->child_args['link'] ) {
$combined_attribs = 'target="' . $this->child_args['target'] . '"';
if ( '_blank' == $this->child_args['target'] ) {
$combined_attribs = 'target="' . $this->child_args['target'] . '" rel="noopener noreferrer"';
}
$inner_content .= sprintf( '<a href="%s" %s>%s</a>', $this->child_args['link'], $combined_attribs, sprintf( '<span>%s</span>', $this->child_args['company'] ) );
} else {
$inner_content .= sprintf( '<span>%s</span>', $this->child_args['company'] );
}
}
$inner_content .= '</span></div>';
}
$html = sprintf(
'<div %s><blockquote><q %s>%s</q></blockquote>%s</div>',
FusionBuilder::attributes( 'testimonials-shortcode-review' ),
FusionBuilder::attributes( 'testimonials-shortcode-quote' ),
do_shortcode( $content ),
$inner_content
);
return $html;
}
/**
* Render clean design.
*
* @access private
* @since 1.0
* @param string $content The content.
* @return string
*/
private function render_child_clean( $content ) {
global $fusion_library;
$thumbnail = $pic = $author = '';
if ( 'image' === $this->child_args['avatar'] && $this->child_args['image'] ) {
$image_id = $fusion_library->images->get_attachment_id_from_url( $this->child_args['image'] );
$this->child_args['alt'] = '';
if ( $image_id ) {
$this->child_args['alt'] = get_post_field( '_wp_attachment_image_alt', $image_id );
}
$pic = sprintf( '<img %s />', FusionBuilder::attributes( 'testimonials-shortcode-image' ) );
}
if ( 'image' === $this->child_args['avatar'] && ! $this->child_args['image'] ) {
$this->child_args['avatar'] = 'none';
}
if ( 'none' !== $this->child_args['avatar'] ) {
$thumbnail = sprintf( '<div %s>%s</div>', FusionBuilder::attributes( 'testimonials-shortcode-thumbnail' ), $pic );
}
$author .= sprintf( '<div %s><span %s>', FusionBuilder::attributes( 'testimonials-shortcode-author' ), FusionBuilder::attributes( 'company-name' ) );
if ( $this->child_args['name'] ) {
$author .= sprintf( '<strong>%s</strong>', $this->child_args['name'] );
}
if ( $this->child_args['name'] && $this->child_args['company'] ) {
$author .= ', ';
}
if ( $this->child_args['company'] ) {
if ( ! empty( $this->child_args['link'] ) && $this->child_args['link'] ) {
$author .= sprintf( '<a href="%s" target="%s">%s</a>', $this->child_args['link'], $this->child_args['target'], sprintf( '<span>%s</span>', $this->child_args['company'] ) );
} else {
$author .= sprintf( '<span>%s</span>', $this->child_args['company'] );
}
}
$author .= '</span></div>';
$html = sprintf(
'<div %s>%s<blockquote %s><q %s>%s</q></blockquote>%s</div>',
FusionBuilder::attributes( 'testimonials-shortcode-review' ),
$thumbnail,
FusionBuilder::attributes( 'testimonials-shortcode-blockquote' ),
FusionBuilder::attributes( 'testimonials-shortcode-quote' ),
do_shortcode( $content ),
$author
);
return $html;
}
/**
* Builds the blockquote attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function blockquote_attr() {
$attr = array(
'style' => '',
);
$bgcolor = Fusion_Color::new_color( $this->parent_args['backgroundcolor'] );
if ( 'clean' === $this->parent_args['design'] && ( 'transparent' == $this->parent_args['backgroundcolor'] || '0' == $bgcolor->alpha ) ) {
$attr['style'] .= 'margin: -25px;';
}
$attr['style'] .= 'background-color:' . $this->parent_args['backgroundcolor'] . ';';
return $attr;
}
/**
* Builds the quotes attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function quote_attr() {
return array(
'style' => 'background-color:' . $this->parent_args['backgroundcolor'] . ';color:' . $this->parent_args['textcolor'] . ';',
);
}
/**
* Builds the review attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function review_attr() {
$attr = array(
'class' => 'review ',
);
if ( 'none' === $this->child_args['avatar'] ) {
$attr['class'] .= 'no-avatar';
} else if ( 'image' === $this->child_args['avatar'] ) {
$attr['class'] .= 'avatar-image';
} else {
$attr['class'] .= $this->child_args['avatar'];
}
return $attr;
}
/**
* Builds the thumbnail attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function thumbnail_attr() {
$attr = array(
'class' => 'testimonial-thumbnail',
);
if ( 'image' !== $this->child_args['avatar'] ) {
$attr['class'] .= ' doe';
$attr['style'] = sprintf( 'color:%s;', $this->parent_args['textcolor'] );
}
return $attr;
}
/**
* Builds the image attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function image_attr() {
$attr = array(
'class' => 'testimonial-image',
'src' => $this->child_args['image'],
'alt' => $this->child_args['alt'],
);
if ( 'image' === $this->child_args['avatar'] ) {
$attr['style'] = sprintf( '-webkit-border-radius: %s;-moz-border-radius: %s;border-radius: %s;',
$this->child_args['image_border_radius'], $this->child_args['image_border_radius'], $this->child_args['image_border_radius'] );
}
return $attr;
}
/**
* Builds the author attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function author_attr() {
return array(
'class' => 'author',
'style' => 'color:' . $this->parent_args['textcolor'] . ';',
);
}
/**
* Builds the pagination attributes array.
*
* @access public
* @since 1.0
* @return array
*/
public function pagination_attr() {
return array(
'class' => 'testimonial-pagination',
'id' => 'fusion-testimonials-' . $this->testimonials_counter,
);
}
/**
* Builds the dynamic styling.
*
* @access public
* @since 1.1
* @return array
*/
public function add_styling() {
global $wp_version, $content_media_query, $six_fourty_media_query, $three_twenty_six_fourty_media_query, $ipad_portrait_media_query, $fusion_library, $fusion_settings, $dynamic_css_helpers;
$css['global']['.fusion-testimonials .author:after']['border-top-color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'testimonial_bg_color' ) );
$elements = array( '.fusion-testimonials .review blockquote q' );
$css['global'][ $dynamic_css_helpers->implode( $elements ) ]['background-color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'testimonial_bg_color' ) );
$elements = array( '.fusion-testimonials .review blockquote q' );
$css['global'][ $dynamic_css_helpers->implode( $elements ) ]['color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'testimonial_text_color' ) );
return $css;
}
/**
* Adds settings to element options panel.
*
* @access public
* @since 1.1
* @return array $sections Testimonials settings.
*/
public function add_options() {
return array(
'testimonials_shortcode_section' => array(
'label' => esc_html__( 'Testimonials Element', 'fusion-builder' ),
'description' => '',
'id' => 'testimonials_shortcode_section',
'type' => 'accordion',
'fields' => array(
'testimonial_bg_color' => array(
'label' => esc_html__( 'Testimonial Background Color', 'fusion-builder' ),
'description' => esc_html__( 'Controls the color of the testimonial background.', 'fusion-builder' ),
'id' => 'testimonial_bg_color',
'default' => '#f6f6f6',
'type' => 'color-alpha',
),
'testimonial_text_color' => array(
'label' => esc_html__( 'Testimonial Text Color', 'fusion-builder' ),
'description' => esc_html__( 'Controls the color of the testimonial text.', 'fusion-builder' ),
'id' => 'testimonial_text_color',
'default' => '#747474',
'type' => 'color',
),
'testimonials_speed' => array(
'label' => esc_html__( 'Testimonials Speed', 'fusion-builder' ),
'description' => esc_html__( 'Controls the speed of the testimonial slider. ex: 1000 = 1 second.', 'fusion-builder' ),
'id' => 'testimonials_speed',
'default' => '4000',
'type' => 'slider',
'choices' => array(
'min' => '0',
'max' => '20000',
'step' => '250',
),
),
'testimonials_random' => array(
'label' => esc_html__( 'Random Order', 'fusion-builder' ),
'description' => esc_html__( 'Turn on to display testimonials in a random order.', 'fusion-builder' ),
'id' => 'testimonials_random',
'default' => '0',
'type' => 'switch',
),
),
),
);
}
/**
* Sets the necessary scripts.
*
* @access public
* @since 1.1
* @return void
*/
public function add_scripts() {
global $fusion_settings;
Fusion_Dynamic_JS::enqueue_script(
'fusion-testimonials',
FusionBuilder::$js_folder_url . '/general/fusion-testimonials.js',
FusionBuilder::$js_folder_path . '/general/fusion-testimonials.js',
array( 'jquery', 'jquery-cycle' ),
'1',
true
);
Fusion_Dynamic_JS::localize_script(
'fusion-testimonials',
'fusionTestimonialVars',
array(
'testimonials_speed' => intval( $fusion_settings->get( 'testimonials_speed' ) ),
)
);
}
}
}
new FusionSC_Testimonials();
}
/**
* Map shortcode to Fusion Builder.
*
* @since 1.0
*/
function fusion_element_testimonials() {
global $fusion_settings;
fusion_builder_map( array(
'name' => esc_attr__( 'Testimonials', 'fusion-builder' ),
'shortcode' => 'fusion_testimonials',
'multi' => 'multi_element_parent',
'element_child' => 'fusion_testimonial',
'icon' => 'fusiona-bubbles',
'preview' => FUSION_BUILDER_PLUGIN_DIR . 'inc/templates/previews/fusion-testimonials-preview.php',
'preview_id' => 'fusion-builder-block-module-testimonials-preview-template',
'params' => array(
array(
'type' => 'tinymce',
'heading' => esc_attr__( 'Content', 'fusion-builder' ),
'description' => esc_attr__( 'Enter some content for this contentbox.', 'fusion-builder' ),
'param_name' => 'element_content',
'value' => '[fusion_testimonial name="' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '" avatar="male" image="" image_border_radius="" company="' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '" link="" target="_self"]' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '[/fusion_testimonial]',
),
array(
'type' => 'radio_button_set',
'heading' => esc_attr__( 'Design', 'fusion-builder' ),
'description' => esc_attr__( 'Choose a design for the element.', 'fusion-builder' ),
'param_name' => 'design',
'value' => array(
'classic' => esc_attr__( 'Classic', 'fusion-builder' ),
'clean' => esc_attr__( 'Clean', 'fusion-builder' ),
),
'default' => 'classic',
),
array(
'type' => 'colorpickeralpha',
'heading' => esc_attr__( 'Background Color', 'fusion-builder' ),
'description' => esc_attr__( 'Controls the background color. ', 'fusion-builder' ),
'param_name' => 'backgroundcolor',
'value' => '',
'default' => $fusion_settings->get( 'testimonial_bg_color' ),
),
array(
'type' => 'colorpicker',
'heading' => esc_attr__( 'Text Color', 'fusion-builder' ),
'description' => esc_attr__( 'Controls the text color. ', 'fusion-builder' ),
'param_name' => 'textcolor',
'value' => '',
'default' => $fusion_settings->get( 'testimonial_text_color' ),
),
array(
'type' => 'radio_button_set',
'heading' => esc_attr__( 'Random Order', 'fusion-builder' ),
'description' => esc_attr__( 'Turn on to display testimonials in a random order.' ),
'param_name' => 'random',
'value' => array(
'' => esc_attr__( 'Default', 'fusion-builder' ),
'yes' => esc_attr__( 'Yes', 'fusion-builder' ),
'no' => esc_attr__( 'No', 'fusion-builder' ),
),
'default' => '',
),
array(
'type' => 'checkbox_button_set',
'heading' => esc_attr__( 'Element Visibility', 'fusion-builder' ),
'param_name' => 'hide_on_mobile',
'value' => fusion_builder_visibility_options( 'full' ),
'default' => fusion_builder_default_visibility( 'array' ),
'description' => esc_attr__( 'Choose to show or hide the element on small, medium or large screens. You can choose more than one at a time.', 'fusion-builder' ),
),
array(
'type' => 'textfield',
'heading' => esc_attr__( 'CSS Class', 'fusion-builder' ),
'description' => esc_attr__( 'Add a class to the wrapping HTML element.', 'fusion-builder' ),
'param_name' => 'class',
'value' => '',
'group' => esc_attr__( 'General', 'fusion-builder' ),
),
array(
'type' => 'textfield',
'heading' => esc_attr__( 'CSS ID', 'fusion-builder' ),
'description' => esc_attr__( 'Add an ID to the wrapping HTML element.', 'fusion-builder' ),
'param_name' => 'id',
'value' => '',
'group' => esc_attr__( 'General', 'fusion-builder' ),
),
),
) );
}
add_action( 'fusion_builder_before_init', 'fusion_element_testimonials' );
/**
* Map shortcode to Fusion Builder.
*
* @since 1.0
*/
function fusion_element_testimonial() {
fusion_builder_map( array(
'name' => esc_attr__( 'Testimonial', 'fusion-builder' ),
'shortcode' => 'fusion_testimonial',
'hide_from_builder' => true,
'allow_generator' => true,
'params' => array(
array(
'type' => 'textfield',
'heading' => esc_attr__( 'Name', 'fusion-builder' ),
'description' => esc_attr__( 'Insert the name of the person.', 'fusion-builder' ),
'param_name' => 'name',
'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ),
'placeholder' => true,
),
array(
'type' => 'radio_button_set',
'heading' => esc_attr__( 'Avatar', 'fusion-builder' ),
'description' => esc_attr__( 'Choose which kind of Avatar to be displayed.', 'fusion-builder' ),
'param_name' => 'avatar',
'value' => array(
'male' => esc_attr__( 'Male', 'fusion-builder' ),
'female' => esc_attr__( 'Female', 'fusion-builder' ),
'image' => esc_attr__( 'Image', 'fusion-builder' ),
'none' => esc_attr__( 'None', 'fusion-builder' ),
),
'default' => 'male',
),
array(
'type' => 'upload',
'heading' => esc_attr__( 'Custom Avatar', 'fusion-builder' ),
'description' => esc_attr__( 'Upload a custom avatar image.', 'fusion-builder' ),
'param_name' => 'image',
'value' => '',
'dependency' => array(
array(
'element' => 'avatar',
'value' => 'image',
'operator' => '==',
),
),
),
array(
'type' => 'textfield',
'heading' => esc_attr__( 'Border Radius', 'fusion-builder' ),
'description' => esc_attr__( 'Choose the radius of the testimonial image. In pixels (px), ex: 1px, or "round". ', 'fusion-builder' ),
'param_name' => 'image_border_radius',
'value' => '',
'dependency' => array(
array(
'element' => 'avatar',
'value' => 'image',
'operator' => '==',
),
),
),
array(
'type' => 'textfield',
'heading' => esc_attr__( 'Company', 'fusion-builder' ),
'description' => esc_attr__( 'Insert the name of the company.', 'fusion-builder' ),
'param_name' => 'company',
'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ),
'placeholder' => true,
),
array(
'type' => 'textfield',
'heading' => esc_attr__( 'Link', 'fusion-builder' ),
'description' => esc_attr__( 'Add the url the company name will link to.', 'fusion-builder' ),
'param_name' => 'link',
'value' => '',
),
array(
'type' => 'radio_button_set',
'heading' => esc_attr__( 'Link Target', 'fusion-builder' ),
'description' => __( '_self = open in same window <br />_blank = open in new window.', 'fusion-builder' ),
'param_name' => 'target',
'value' => array(
'_self' => '_self',
'_blank' => '_blank',
),
'default' => '_self',
'dependency' => array(
array(
'element' => 'link',
'value' => '',
'operator' => '!=',
),
),
),
array(
'type' => 'tinymce',
'heading' => esc_attr__( 'Testimonial Content', 'fusion-builder' ),
'description' => esc_attr__( 'Add the testimonial content.', 'fusion-builder' ),
'param_name' => 'element_content',
'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ),
'placeholder' => true,
),
),
) );
}
add_action( 'fusion_builder_before_init', 'fusion_element_testimonial' );