HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/bwcdev/wp-content/plugins/salient-core/includes/nectar_maps/testimonial_slider.php
<?php 

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$tab_id_1 = time().'-1-'.rand(0, 100);
$tab_id_2 = time().'-2-'.rand(0, 100);

$vc_is_wp_version_3_6_more = version_compare(preg_replace('/^([\d\.]+)(\-.*$)/', '$1', get_bloginfo('version')), '3.6') >= 0;

return array(
  "name"  => esc_html__("Testimonial Slider", "salient-core"),
  "base" => "testimonial_slider",
  "show_settings_on_create" => false,
  "is_container" => true,
  "icon" => "icon-wpb-testimonial-slider",
  "category" => esc_html__('Nectar Elements', 'salient-core'),
  "description" => esc_html__('An appealing testmonial slider.', 'salient-core'),
  "params" => array(
    array(
      "type" => "dropdown",
      "heading" => esc_html__("Style", "salient-core"),
      "param_name" => "style",
      "admin_label" => false,
      "value" => array(
        esc_html__("Basic (Default)", "salient-core") => "default",
        esc_html__("Minimal", "salient-core") => "minimal",
        esc_html__("Multiple Visible", "salient-core") => "multiple_visible",
        esc_html__("Multiple Visible Minimal", "salient-core") => "multiple_visible_minimal",
      ),
      'save_always' => true,
      "description" => esc_html__("Please select the style for your testimonial slider", "salient-core")
    ),
    array(
      "type" => "dropdown",
      "heading" => esc_html__("Color", "salient-core"),
      "param_name" => "color",
      "admin_label" => false,
      "value" => array(
        "Inherit (from row Text Color)" => "default",
        "Accent Color + Light Text" => "accent-color-light",
        "Extra Color 1 + Light Text" => "extra-color-1-light",
        "Extra Color 2 + Light Text" => "extra-color-2-light",
        "Extra Color 3 + Light Text" => "extra-color-3-light",
        "Accent Color + Dark Text" => "accent-color-dark",
        "Extra Color 1 + Dark Text" => "extra-color-1-dark",
        "Extra Color 2 + Dark Text" => "extra-color-2-dark",
        "Extra Color 3 + Dark Text" => "extra-color-3-dark"
      ),
      'save_always' => true,
      "dependency" => Array('element' => "style", 'value' => array('multiple_visible')),
      'description' => esc_html__( 'Choose a color from your','salient-core') . ' <a target="_blank" href="'. esc_url(admin_url()) .'?page=Salient&tab=6"> ' . esc_html__('globally defined color scheme','salient-core') . '</a>',
    ),
    array(
      "type" => "dropdown",
      "heading" => esc_html__("Star Rating Color", "salient-core"),
      "param_name" => "star_rating_color",
      "admin_label" => false,
      "value" => array(
				esc_html__( "Accent Color", "salient-core") => "accent-color",
				esc_html__( "Extra Color 1", "salient-core") => "extra-color-1",
				esc_html__( "Extra Color 2", "salient-core") => "extra-color-2",	
				esc_html__( "Extra Color 3", "salient-core") => "extra-color-3",
				esc_html__( "Color Gradient 1", "salient-core") => "extra-color-gradient-1",
				esc_html__( "Color Gradient 2", "salient-core") => "extra-color-gradient-2"
      ),
      'save_always' => true,
      "dependency" => Array('element' => "style", 'value' => array('multiple_visible_minimal','minimal','default')),
      'description' => esc_html__( 'Choose a color from your','salient-core') . ' <a target="_blank" href="'. esc_url(admin_url()) .'?page=Salient&tab=6"> ' . esc_html__('globally defined color scheme','salient-core') . '</a>',
    ),
    array(
      "type" => "checkbox",
      "class" => "",
      "heading" => "Add Border To Testimonials",
      "value" => array("Yes, please" => "true" ),
      "param_name" => "add_border",
      "dependency" => Array('element' => "style", 'value' => array('multiple_visible_minimal')),
      "description" => esc_html__("This will add a slight border to your testimonials", "salient-core")
    ),
    array(
      "type" => "textfield",
      "heading" => esc_html__("Auto rotate?", "salient-core"),
      "param_name" => "autorotate",
      "value" => '',
      "description" => esc_html__("If you would like this to autorotate, enter the rotation speed in milliseconds here. i.e 5000", "salient-core")
    ),
    array(
      "type" => "checkbox",
      "class" => "",
      "heading" => "Disable height animation?",
      "value" => array("Yes, please" => "true" ),
      "param_name" => "disable_height_animation",
      "dependency" => Array('element' => "style", 'value' => array('default','minimal')),
      "description" => esc_html__("Your testimonial slider will animate the height of itself to match the height of the testimonial being shown - this will remove that and simply set the height equal to the tallest testimonial to allow your content below to remain stagnant instead of moving up/down.", "salient-core")
    )
  ),
  "custom_markup" => '
  <div class="wpb_tabs_holder wpb_holder vc_container_for_children">
  <ul class="tabs_controls">
  </ul>
  %content%
  </div>'
  ,
  'default_content' => '
  [testimonial title="'.esc_html__('Testimonial','salient-core').'" id="'.$tab_id_1.'"] Click the edit button to add your testimonial. [/testimonial]
  [testimonial title="'.esc_html__('Testimonial','salient-core').'" id="'.$tab_id_2.'"] Click the edit button to add your testimonial. [/testimonial]
  ',
  "js_view" => ($vc_is_wp_version_3_6_more ? 'VcTabsView' : 'VcTabsView35')
);

?>