File: /home/petsclubcc/kallel/wp-content/plugins/keydesign-addon/elements/testimonial_card_elem.php
<?php
if (!class_exists('KD_ELEM_TESTIMONIAL_CARD')) {
class KD_ELEM_TESTIMONIAL_CARD extends KEYDESIGN_ADDON_CLASS {
function __construct() {
add_action('init', array($this, 'kd_testimonial_card_init'));
add_shortcode('tek_testimonial_card', array($this, 'kd_testimonial_card_shrt'));
}
// Element configuration in admin
function kd_testimonial_card_init() {
if (function_exists('vc_map')) {
vc_map(array(
"name" => esc_html__("Testimonial Card", "keydesign"),
"description" => esc_html__("List client testimonial with single testimonial cards.", "keydesign"),
"base" => "tek_testimonial_card",
"class" => "",
"icon" => plugins_url('assets/element_icons/testimonial-card.png', dirname(__FILE__)),
"category" => esc_html__("KeyDesign Elements", "keydesign"),
"params" => array(
array(
"type" => "textfield",
"class" => "kd-back-desc",
"heading" => esc_html__("Author name", "keydesign"),
"param_name" => "tcards_author_name",
"value" => "",
"admin_label" => true,
"description" => esc_html__("Write the testimonial author name.", "keydesign"),
),
array(
"type" => "colorpicker",
"class" => "",
"heading" => esc_html__("Author name text color", "keydesign"),
"param_name" => "tcards_author_name_color",
"value" => "",
"description" => esc_html__("Choose author name text color. If none selected, the default theme color will be used.", "keydesign"),
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Author job", "keydesign"),
"param_name" => "tcards_author_job",
"value" => "",
"description" => esc_html__("Write the testimonial author job.", "keydesign"),
),
array(
"type" => "colorpicker",
"class" => "",
"heading" => esc_html__("Author job text color", "keydesign"),
"param_name" => "tcards_author_job_color",
"value" => "",
"description" => esc_html__("Choose author job text color. If none selected, the default theme color will be used.", "keydesign"),
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("Author image source", "keydesign"),
"param_name" => "image_source",
"value" => array(
"Media library" => "media_library",
"External link" => "external_link",
),
"description" => esc_html__("Select image source.", "keydesign"),
"save_always" => true,
),
array(
"type" => "attach_image",
"class" => "",
"heading" => esc_html__("Author profile image", "keydesign"),
"param_name" => "tcards_author_image",
"value" => "",
"description" => esc_html__("Upload author profile image.", "keydesign"),
"dependency" => array(
"element" => "image_source",
"value" => array("media_library")
),
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Image external source", "keydesign"),
"param_name" => "ext_image",
"value" => "",
"description" => esc_html__("Enter image external link.", "keydesign"),
"dependency" => array(
"element" => "image_source",
"value" => array("external_link")
),
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Image size", "keydesign"),
"param_name" => "ext_image_size",
"value" => "",
"description" => esc_html__("Enter image size in pixels. Example: 100x100 (Width x Height).", "keydesign"),
"dependency" => array(
"element" => "image_source",
"value" => array("external_link")
),
),
array(
"type" => "textarea",
"class" => "",
"heading" => esc_html__("Testimonial text", "keydesign"),
"param_name" => "tcards_testimonial_text",
"value" => "",
"description" => esc_html__("Write the testimonial message here.", "keydesign")
),
array(
"type" => "colorpicker",
"class" => "",
"heading" => esc_html__("Testimonial text color", "keydesign"),
"param_name" => "tcards_testimonial_text_color",
"value" => "",
"description" => esc_html__("Choose testimonial text color. If none selected, the default theme color will be used.", "keydesign"),
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("Link settings", "keydesign"),
"param_name" => "tcards_link_settings",
"value" => array(
esc_html__( 'No link', 'keydesign' ) => 'no_link',
esc_html__( 'Simple link', 'keydesign' ) => 'simple_link',
),
"save_always" => true,
"description" => esc_html__("You can add or remove the custom link.", "keydesign"),
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Link text", "keydesign"),
"param_name" => "tcards_link_text",
"value" => "",
"description" => esc_html__("Enter link text.", "keydesign"),
"dependency" => array(
"element" => "tcards_link_settings",
"value" => array("simple_link"),
),
),
array(
"type" => "href",
"class" => "",
"heading" => esc_html__("Link URL", "keydesign"),
"param_name" => "tcards_link_url",
"value" => "",
"dependency" => array(
"element" => "tcards_link_settings",
"value" => array( "simple_link" ),
),
),
array(
'type' => 'dropdown',
'heading' => __( 'Link target', 'keydesign' ),
'param_name' => 'tcards_link_target',
"value" => array(
esc_html__( 'Same window', 'keydesign' ) => '_self',
esc_html__( 'New window', 'keydesign' ) => '_blank',
),
"save_always" => true,
"dependency" => array(
"element" => "tcards_link_settings",
"value" => array( "simple_link" ),
),
),
array(
"type" => "colorpicker",
"class" => "",
"heading" => esc_html__("Link color", "keydesign"),
"param_name" => "tcards_link_color",
"value" => "",
"dependency" => array(
"element" => "tcards_link_settings",
"value" => array( "simple_link" ),
),
"description" => esc_html__("Select link color. If none selected, the default theme color will be used.", "keydesign")
),
array(
"type" => "colorpicker",
"class" => "",
"heading" => esc_html__("Testimonial box background color", "keydesign"),
"param_name" => "tcards_testimonial_bg_color",
"value" => "",
"description" => esc_html__("Choose testimonial box background color. If none selected, the default theme color will be used.", "keydesign"),
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("CSS Animation", "keydesign"),
"param_name" => "css_animation",
"value" => array(
"No" => "",
"Fade In" => "kd-animated fadeIn",
"Fade In Down" => "kd-animated fadeInDown",
"Fade In Left" => "kd-animated fadeInLeft",
"Fade In Right" => "kd-animated fadeInRight",
"Fade In Up" => "kd-animated fadeInUp",
"Zoom In" => "kd-animated zoomIn",
),
"save_always" => true,
"admin_label" => true,
"description" => esc_html__("Select type of animation for element to be animated when it enters the browsers viewport (Note: works only in modern browsers).", "keydesign"),
"group" => esc_html__( "Extras", "keydesign" ),
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("Animation Delay", "keydesign"),
"param_name" => "elem_animation_delay",
"value" => array(
"0 ms" => "",
"200 ms" => "200",
"400 ms" => "400",
"600 ms" => "600",
"800 ms" => "800",
"1 s" => "1000",
),
"dependency" => array(
"element" => "css_animation",
"value" => array("kd-animated fadeIn", "kd-animated fadeInDown", "kd-animated fadeInLeft", "kd-animated fadeInRight", "kd-animated fadeInUp", "kd-animated zoomIn")
),
"save_always" => true,
"admin_label" => true,
"description" => esc_html__("Enter animation delay in ms", "keydesign"),
"group" => esc_html__( "Extras", "keydesign" ),
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Extra class name", "keydesign"),
"param_name" => "tcards_extra_class",
"value" => "",
"description" => esc_html__("If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.", "keydesign"),
"group" => esc_html__( "Extras", "keydesign" ),
),
)
));
}
}
// Render the element on front-end
public function kd_testimonial_card_shrt($atts, $content = null) {
extract( shortcode_atts( array(
'tcards_author_name' => '',
'tcards_author_name_color' => '',
'tcards_author_job' => '',
'tcards_author_job_color' => '',
'image_source' => '',
'tcards_author_image' => '',
'ext_image' => '',
'ext_image_size' => '',
'tcards_testimonial_text' => '',
'tcards_testimonial_text_color' => '',
'tcards_testimonial_bg_color' => '',
'tcards_link_settings' => '',
'tcards_link_text' => '',
'tcards_link_url' => '',
'tcards_link_target' => '',
'tcards_link_color' => '',
'css_animation' => '',
'elem_animation_delay' => '',
'tcards_extra_class' => '',
), $atts));
$author_img = $tcards_author_img_array = $author_image = $animation_delay = $default_src = $dimensions = $hwstring = $kd_tcardchild_id = $child_wrapper_class = '';
$default_src = vc_asset_url( 'vc/no_image.png' );
$dimensions = vc_extract_dimensions( $ext_image_size );
$hwstring = $dimensions ? image_hwstring( $dimensions[0], $dimensions[1] ) : '';
if ($image_source == 'external_link') {
if (!$ext_image) {
$author_image .='<img src="'.$default_src.'" class="vc_img-placeholder" />';
} else {
$author_image .='<img src="'.$ext_image.'" '.$hwstring.' />';
}
} else {
$tcards_author_img_array = wpb_getImageBySize ( $params = array( 'post_id' => NULL, 'attach_id' => $tcards_author_image, 'thumb_size' => 'full', 'class' => "" ) );
$author_image = $tcards_author_img_array['thumbnail'];
}
//CSS Animation
if ($css_animation == "no_animation") {
$css_animation = "";
}
// Animation delay
if ($elem_animation_delay) {
$animation_delay = 'data-animation-delay='.$elem_animation_delay;
}
$kd_tcardchild_id = "kd-cardchild-".uniqid();
$child_wrapper_class = implode(' ', array('key-tcards', 'single-tcard-elem', $css_animation, $tcards_extra_class, $kd_tcardchild_id));
$output = '<div class="'.trim($child_wrapper_class).'" '.$animation_delay.'>
<div class="tcards_message" '.(!empty($tcards_testimonial_bg_color) ? 'style="background-color: '.$tcards_testimonial_bg_color.';"' : '').'>
<h6 '.(!empty($tcards_testimonial_text_color) ? 'style="color: '.$tcards_testimonial_text_color.';"' : '').'>'.$tcards_testimonial_text.'</h6>';
if ( $tcards_link_settings == 'simple_link' && $tcards_link_text != '' && $tcards_link_url != '') {
$output .= '<div class="tcards-link"><a href="'.esc_url( $tcards_link_url ).'" target="'.esc_attr( $tcards_link_target ).'" '.(!empty($tcards_link_color) ? 'style="color: '.$tcards_link_color.';"' : '').'>'.esc_html( $tcards_link_text ).'</a></div>';
}
$output .= '</div>
<div class="tcards_header">
<div class="tcards-image">'.$author_image.'</div>
<h4 class="tcards-name" '.(!empty($tcards_author_name_color) ? 'style="color: '.$tcards_author_name_color.';"' : '').'>'.$tcards_author_name.'</h4>
<p class="tcards-job" '.(!empty($tcards_author_job_color) ? 'style="color: '.$tcards_author_job_color.';"' : '').'>'.$tcards_author_job.'</p>
</div>';
if ($tcards_testimonial_bg_color) {
$output .= '<style>.testimonial-cards .'.$kd_tcardchild_id.' .tcards_message:before { border-color: '.$tcards_testimonial_bg_color.' transparent transparent '.$tcards_testimonial_bg_color.'; }</style>';
}
$output .= '</div>';
return $output;
}
}
}
if (class_exists('KD_ELEM_TESTIMONIAL_CARD')) {
$KD_ELEM_TESTIMONIAL_CARD = new KD_ELEM_TESTIMONIAL_CARD;
}
?>