Backups Created:
/home/falconag/public_html/wp-admin/admin-wolf.php
/home/falconag/public_html/wp-content/edit-wolf.php
/home/falconag/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: Ultimate_Hotspot.php
<?php if(!class_exists('ULT_HotSpot')) { class ULT_HotSpot { function __construct() { // Use this when creating a shortcode addon add_shortcode( 'ult_hotspot', array( $this, 'ult_hotspot_callback' ) ); add_shortcode( 'ult_hotspot_items', array($this, 'ult_hotspot_items_callback' ) ); // We safely integrate with VC with this hook add_action( 'init', array( $this, 'ult_hotspot_init' ),99 ); add_action('admin_enqueue_scripts',array($this, 'enqueue_admin_assets'),999); // Register CSS and JS add_action( 'wp_enqueue_scripts', array( $this, 'ult_hotspot_scripts' ), 1 ); if(defined('WPB_VC_VERSION') && version_compare(WPB_VC_VERSION, 4.8) >= 0) { if(function_exists('vc_add_shortcode_param')) { vc_add_shortcode_param('ultimate_hotspot_param', array($this, 'ultimate_hotspot_param_callback'), plugins_url('../admin/vc_extend/js/vc-hotspot-param.js',__FILE__)); } } else { if(function_exists('add_shortcode_param')) { add_shortcode_param('ultimate_hotspot_param', array($this, 'ultimate_hotspot_param_callback'), plugins_url('../admin/vc_extend/js/vc-hotspot-param.js',__FILE__)); } } } function ultimate_hotspot_param_callback($settings, $value) { $dependency = ''; $class = isset($settings['class']) ? $settings['class'] : ''; $output = '<div class="ult-hotspot-image-wrapper '.esc_attr($class).'">'; $output .= '<img src="" class="ult-hotspot-image" alt="image"/>'; $output .= '<div class="ult-hotspot-draggable"></div>'; $output .= '<input type="hidden" name="'.esc_attr($settings['param_name']).'" value="'.esc_attr($value).'" class="ult-hotspot-positions wpb_vc_param_value" '.$dependency.'/>'; $output .= '</div>'; return $output; } function enqueue_admin_assets($hook) { if($hook == "post.php" || $hook == "post-new.php" || $hook == "edit.php"){ $bsf_dev_mode = bsf_get_option('dev_mode'); if($bsf_dev_mode === 'enable') { wp_register_script('hotspt-admin-js', plugins_url( '../admin/vc_extend/js/admin_enqueue_js.js', __FILE__ ),array( 'jquery', 'jquery-ui-core', 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ),ULTIMATE_VERSION,true); wp_enqueue_script('hotspt-admin-js'); } } } function ult_hotspot_callback( $atts, $content = null ) { global $tooltip_continuous_animation; extract( shortcode_atts( array( 'main_img' => '', 'main_img_size' => '', 'main_img_width' => '', 'el_class' => '', ), $atts ) ); $vc_version = (defined('WPB_VC_VERSION')) ? WPB_VC_VERSION : 0; $is_vc_49_plus = (version_compare(4.9, $vc_version, '<=')) ? 'ult-adjust-bottom-margin' : ''; $content = wpb_js_remove_wpautop($content, true); // fix unclosed/unwanted paragraph tags in $content $mnimg = $alt = ''; if( $main_img !== '' ) { $mnimg = apply_filters('ult_get_img_single', $main_img, 'url'); $alt = apply_filters('ult_get_img_single', $main_img, 'alt'); } $cust_size = ''; if( $main_img_size== 'main_img_custom'){ if($main_img_width!='') { $cust_size .= "width:".$main_img_width."px;"; } } $output = "<div class='ult_hotspot_container ".esc_attr($is_vc_49_plus)." ult-hotspot-tooltip-wrapper ".esc_attr($el_class)."' style=".esc_attr($cust_size).">"; $output .= " <img class='ult_hotspot_image' src=".esc_url(apply_filters('ultimate_images', $mnimg))." alt='".esc_attr($alt)."'/>"; $output .= " <div class='utl-hotspot-items ult-hotspot-item'>".do_shortcode($content)."</div>"; $output .= " <div style='color:#000;' data-image='".esc_attr($GLOBALS['hotspot_icon'])." ".esc_attr($GLOBALS['hotspot_icon_bg_color'])." ".esc_attr($GLOBALS['hotspot_icon_color'])." ".esc_attr($GLOBALS['hotspot_icon_size'])." ".esc_attr($GLOBALS['tooltip_continuous_animation'])."'></div>"; $output .= "</div>"; return $output; } function ult_hotspot_items_callback( $atts, $content = null ){ global $hotspot_icon, $hotspot_icon_bg_color, $hotspot_icon_color, $hotspot_icon_size; extract( shortcode_atts( array( 'hotspot_content' => '', 'hotspot_label' => '', 'hotspot_position' => '0,0', 'tooltip_content' => '', 'tooltip_width' => '300', 'tooltip_padding' => '', 'tooltip_position' => '', "icon_type" => '', 'icon' => 'Defaults-map-marker', 'icon_color' => '', 'icon_style' => '', 'icon_color_bg' => '', 'icon_border_style' => '', 'icon_color_border' => '', 'icon_border_size' => '', 'icon_border_radius' => '', 'icon_border_spacing' => '', 'icon_img' => '', 'img_width' => '60', 'link_style' => '', 'icon_link' => '', 'icon_size' => '', "alignment" => "center", 'tooltip_trigger' => '', 'tooltip_animation' => '', 'tooltip_continuous_animation' => '', 'glow_color' => '', 'enable_bubble_arrow' => 'on', 'tooltip_custom_bg_color' => '#fff', 'tooltip_custom_color' => '#4c4c4c', 'tooltip_font' => '', 'tooltip_font_style' => '', 'tooltip_font_size' => '', 'tooltip_font_line_height' => '', 'tooltip_custom_border_size' => '', 'tooltip_align' => '', ), $atts ) ); //$content = wpb_js_remove_wpautop($content, false); // fix unclosed/unwanted paragraph tags in $content // Animation effects $glow = $pulse = ''; if( $tooltip_continuous_animation!='' ) { switch( $tooltip_continuous_animation ) { case "on": $pulse = "ult-pulse"; break; case "glow": if($glow_color !== '') $glow_color = 'style="background-color:'.$glow_color.'"'; else $glow_color = ''; $glow = " <div class='ult-glow' ".esc_attr($glow_color)."></div>"; break; } } if(trim($content) !== '') $hotspot_content = $content; /** Tooltip [Content] Styling *--------------------------------------*/ $font_args = array(); $tooltip_content_style = ''; $tooltip_base_style = ''; $hotspot_tooltip_id = ''; if($tooltip_font != '') { $font_family = get_ultimate_font_family($tooltip_font); $tooltip_content_style .= 'font-family:'.$font_family.';'; array_push($font_args, $tooltip_font); } if($tooltip_font_style != '') { $tooltip_content_style .= get_ultimate_font_style($tooltip_font_style); } // if($tooltip_font_size != '') { $tooltip_content_style .= 'font-size:'.$tooltip_font_size.'px;'; } // if($tooltip_font_line_height != '') { $tooltip_content_style .= 'line-height:'.$tooltip_font_line_height.'px;'; } if(is_numeric($tooltip_font_size)){ $tooltip_font_size = 'desktop:'.$tooltip_font_size.'px;'; } if(is_numeric($tooltip_font_line_height)){ $tooltip_font_line_height = 'desktop:'.$tooltip_font_line_height.'px;'; } $hotspot_tooltip_id = 'hotspot-tooltip-'.rand(1000, 9999); $hotspot_tooltip_args = array( 'target' => '#'.$hotspot_tooltip_id.' .ult-tooltipster-content', // set targeted element e.g. unique class/id etc. 'media_sizes' => array( 'font-size' => $tooltip_font_size, // set 'css property' & 'ultimate_responsive' sizes. Here $title_responsive_font_size holds responsive font sizes from user input. 'line-height' => $tooltip_font_line_height ), ); $hotspot_tooltip_data_list = get_ultimate_vc_responsive_media_css($hotspot_tooltip_args); // Width if($tooltip_width!=''){ $tooltip_content_style .= 'width:' .$tooltip_width. 'px;'; } // Padding if($tooltip_padding!=''){ $tooltip_content_style .= $tooltip_padding; } /** * Tooltip [Base] Styling options * */ // Background if($tooltip_custom_bg_color!=''){ $tooltip_base_style .= 'background-color:' .$tooltip_custom_bg_color. ';'; } /*if($tooltip_theme == 'custom' ) {*/ if($tooltip_custom_color!=''){ $tooltip_base_style .= 'color:' .$tooltip_custom_color. ';'; } // Border Styling if($tooltip_custom_border_size!=''){ $bstyle = str_replace( '|', '', $tooltip_custom_border_size ); $tooltip_base_style .= $bstyle; } if($tooltip_align!=''){ $tooltip_base_style .= 'text-align:'.$tooltip_align.';'; } $data = ''; if($hotspot_tooltip_id !='') { $data .= 'data-mycust-id="'.esc_attr($hotspot_tooltip_id).'" ';} if($hotspot_tooltip_data_list !='') { $data .=$hotspot_tooltip_data_list;} if($tooltip_content_style!='') { $data .= 'data-tooltip-content-style="'.esc_attr($tooltip_content_style). '"'; } if($tooltip_base_style!='') { $data .= 'data-tooltip-base-style="'.esc_attr($tooltip_base_style). '"'; } if($enable_bubble_arrow!='' && $enable_bubble_arrow == 'on') { $data .= ' data-bubble-arrow="true" '; } else { $data .= ' data-bubble-arrow="false" '; } $hotspot_position = explode(',', $hotspot_position); if($icon_type == 'custom') $temp_icon_size = ($img_width/2); else $temp_icon_size = ($icon_size/2); //$temp_icon_size = 0; $hotspot_x_position = $hotspot_position[0]; $hotspot_y_position = (isset($hotspot_position[1])) ? $hotspot_position[1] : '0'; $tooltip_offsetY = ''; //if($icon_size != '') { // set offsetY for tooltip $tooltip_offsetY = $temp_icon_size; //} if($tooltip_animation!='') { $data .= 'data-tooltipanimation="'.esc_attr($tooltip_animation).'"';} if($tooltip_trigger!='') { $data .= 'data-trigger="'.esc_attr($tooltip_trigger).'"';} if($tooltip_offsetY!='') { $data .= 'data-tooltip-offsety="'.esc_attr($tooltip_offsetY).'"';} if($tooltip_position!='') { $data .= 'data-arrowposition="'.esc_attr($tooltip_position).'"';} $icon_animation = ''; $icon_inline = do_shortcode('[just_icon icon_align="'.esc_attr($alignment).'" icon_type="'.esc_attr($icon_type).'" icon="'.esc_attr($icon).'" icon_img="'.esc_attr($icon_img).'" img_width="'.esc_attr($img_width).'" icon_size="'.esc_attr($icon_size).'" icon_color="'.esc_attr($icon_color).'" icon_style="'.esc_attr($icon_style).'" icon_color_bg="'.esc_attr($icon_color_bg).'" icon_color_border="'.esc_attr($icon_color_border).'" icon_border_style="'.esc_attr($icon_border_style).'" icon_border_size="'.esc_attr($icon_border_size).'" icon_border_radius="'.esc_attr($icon_border_radius).'" icon_border_spacing="'.esc_attr($icon_border_spacing).'" icon_animation="'.esc_attr($icon_animation).'"]'); $url = $link_title = $target = $rel = ''; // Hotspot has simple link if( $link_style == 'link' && $icon_link !='' ){ $href = vc_build_link($icon_link); $url = ( isset( $href['url'] ) && $href['url'] !== '' ) ? $href['url'] : ''; $target = ( isset( $href['target'] ) && $href['target'] !== '' ) ? "target='" . esc_attr(trim( $href['target'] )) . "'" : ''; $link_title = ( isset( $href['title'] ) && $href['title'] !== '' ) ? "title='".esc_attr($href['title'])."'" : ''; $rel = ( isset( $href['rel'] ) && $href['rel'] !== '' ) ? "rel='".esc_attr($href['rel'])."'" : ''; } $output = "<div class='ult-hotspot-item ".esc_attr($pulse)."' style='top:-webkit-calc(".esc_attr($hotspot_x_position)."% - ".esc_attr($temp_icon_size)."px);top:-moz-calc(".esc_attr($hotspot_x_position)."% - ".esc_attr($temp_icon_size)."px);top:calc(".esc_attr($hotspot_x_position)."% - ".esc_attr($temp_icon_size)."px);left: -webkit-calc(".esc_attr($hotspot_y_position)."% - ".esc_attr($temp_icon_size)."px);left: -moz-calc(".esc_attr($hotspot_y_position)."% - ".esc_attr($temp_icon_size)."px);left: calc(".esc_attr($hotspot_y_position)."% - ".esc_attr($temp_icon_size)."px);' >"; $output .= " <div style='z-index: 39;position: relative;'>"; if($link_style == 'link'){ $output .= " <a data-link_style='simple' class='ult-tooltipstered ult-hotspot-tooltip' href='".esc_attr($url)."' ".$link_title." ".$target." ". $rel ." data-status='hide'>"; $output .= $icon_inline; $output .= " </a>"; } else { $output .= " <a data-link_style='tootip' ".$data." class='ult-tooltipstered ult-hotspot-tooltip' href='#' data-status='show'>"; $output .= $icon_inline; $output .= "<span class='hotspot-tooltip-content'>".esc_html( str_replace('"', '\'', $hotspot_content ) )."</span>"; $output .= " </a>"; } $output .= " </div><!-- ICON WRAP -->"; $output .= $glow; $output .= "</div>"; return $output; } function ult_hotspot_init() { if(function_exists("vc_map")){ vc_map( array( "name" => __("Hotspot", 'ultimate_vc'), "base" => "ult_hotspot", "as_parent" => array('only' => 'ult_hotspot_items'), "content_element" => true, "show_settings_on_create" => true, "category" => 'Ultimate VC Addons', "icon" => "ult_hotspot", "class" => "ult_hotspot", "description" => __("Display Hotspot on Image.", 'ultimate_vc'), //"is_container" => true, "params" => array( array( "type" => "ult_img_single", "class" => "", "heading" => __("Select Hotspot Image", 'ultimate_vc'), "param_name" => "main_img", "value" =>"", /*"description" => __("Add Hotspot image.", 'ultimate'),*/ /*"holder" =>"div"*/ ), array( "type" => "dropdown", "class" => "", "heading" => __("Image Size", 'ultimate_vc'), "param_name" => "main_img_size", "value" => array( "Default / Full Size" => "main_img_original", "Custom" => "main_img_custom", ), /*"description" => __("Select Hotspot image size.", 'ultimate')*/ ), array( "type" => "number", "heading" => __("Image Width", 'ultimate_vc'), "class" => "", "value" => "", "suffix" => "px", "param_name" => "main_img_width", /*"description" => __("Enter image Width, Height will calculate automatically.", 'ultimate'),*/ "dependency" => array("element" => "main_img_size", "value" => "main_img_custom" ), ), array( "type" => "textfield", "heading" => __("Extra Class Name", "ultimate_vc"), "param_name" => "el_class", "description" => __("Ran out of options? Need more styles? Write your own CSS and mention the class name here.", "ultimate_vc") ) ), "js_view" => 'ULTHotspotContainerView' ) ); global $ultimate_hostspot_image; vc_map( array( "name" => __("Hotspot Item", 'ultimate_vc'), "base" => "ult_hotspot_items", "content_element" => true, "as_child" => array('only' => 'ult_hotspot'), "icon" => "ult_hotspot", "class" => "ult_hotspot", "js_view" => "ULTHotspotSingleView", "is_container" => false, "params" => array( array( 'type' => 'ultimate_hotspot_param', 'heading' => 'Position', 'param_name' => 'hotspot_position', //'admin_label' => true ), /*array( "type" => "number", "class" => "", "heading" => __("Horizontal Position", 'ultimate'), "param_name" => "hotspot_x_position", "value" => "50", "admin_label" => true, ), array( "type" => "number", "class" => "", "admin_label" => true, "heading" => __("Vertical Position", 'ultimate'), "param_name" => "hotspot_y_position", "value" => "50", "suffix" => "%", ),*/ // Hotspot Icon array( "type" => "dropdown", "class" => "", "heading" => __("Icon to display:", "ultimate_vc"), "param_name" => "icon_type", "value" => array( __("Font Icon Manager","ultimate_vc") => "selector", __("Custom Image Icon","ultimate_vc") => "custom", ), "description" => __("Use an existing font icon or upload a custom image.", "ultimate_vc"), //"dependency" => Array("element" => "spacer", "value" => array("line_with_icon","icon_only")), "group" => "Icon", ), array( "type" => "icon_manager", "class" => "", "heading" => __("Select Icon ","ultimate_vc"), "param_name" => "icon", "value" => "", "description" => __("Click and select icon of your choice. If you can't find the one that suits for your purpose","ultimate_vc").", ".__("you can","ultimate_vc")." <a href='admin.php?page=bsf-font-icon-manager' target='_blank'>".__("add new here","ultimate_vc")."</a>.", "dependency" => Array("element" => "icon_type","value" => array("selector")), "group" => "Icon", ), array( "type" => "number", "class" => "", "heading" => __("Size of Icon", "ultimate_vc"), "param_name" => "icon_size", "value" => 32, "min" => 12, "max" => 72, "suffix" => "px", "description" => __("How big would you like it?", "ultimate_vc"), "dependency" => Array("element" => "icon_type","value" => array("selector")), "group" => "Icon", ), array( "type" => "colorpicker", "class" => "", "heading" => __("Color", "ultimate_vc"), "param_name" => "icon_color", "value" => "", "description" => __("Give it a nice paint!", "ultimate_vc"), "dependency" => Array("element" => "icon_type","value" => array("selector")), "group" => "Icon", ), array( "type" => "dropdown", "class" => "", "heading" => __("Icon Style", "ultimate_vc"), "param_name" => "icon_style", "value" => array( __("Simple","ultimate_vc") => "none", __("Circle Background","ultimate_vc") => "circle", __("Square Background","ultimate_vc") => "square", __("Design your own","ultimate_vc") => "advanced", ), "description" => __("We have given three quick preset if you are in a hurry. Otherwise, create your own with various options.", "ultimate_vc"), "dependency" => Array("element" => "icon_type","value" => array("selector")), "group" => "Icon", ), array( "type" => "colorpicker", "class" => "", "heading" => __("Background Color", "ultimate_vc"), "param_name" => "icon_color_bg", "value" => "", "description" => __("Select background color for icon.", "ultimate_vc"), "dependency" => Array("element" => "icon_style", "value" => array("circle","square","advanced")), "group" => "Icon", ), array( "type" => "dropdown", "class" => "", "heading" => __("Icon Border Style", "ultimate_vc"), "param_name" => "icon_border_style", "value" => array( __("None","ultimate_vc") => "", __("Solid","ultimate_vc") => "solid", __("Dashed","ultimate_vc") => "dashed", __("Dotted","ultimate_vc") => "dotted", __("Double","ultimate_vc") => "double", __("Inset","ultimate_vc") => "inset", __("Outset","ultimate_vc") => "outset", ), "description" => __("Select the border style for icon.","ultimate_vc"), "dependency" => Array("element" => "icon_style", "value" => array("advanced")), "group" => "Icon", ), array( "type" => "colorpicker", "class" => "", "heading" => __("Border Color", "ultimate_vc"), "param_name" => "icon_color_border", "value" => "#333333", "description" => __("Select border color for icon.", "ultimate_vc"), "dependency" => Array("element" => "icon_border_style", "not_empty" => true), "group" => "Icon", ), array( "type" => "number", "class" => "", "heading" => __("Border Width", "ultimate_vc"), "param_name" => "icon_border_size", "value" => 1, "min" => 1, "max" => 10, "suffix" => "px", "description" => __("Thickness of the border.", "ultimate_vc"), "dependency" => Array("element" => "icon_border_style", "not_empty" => true), "group" => "Icon", ), array( "type" => "number", "class" => "", "heading" => __("Border Radius", "ultimate_vc"), "param_name" => "icon_border_radius", "value" => 500, "min" => 1, "max" => 500, "suffix" => "px", "description" => __("0 pixel value will create a square border. As you increase the value, the shape convert in circle slowly. (e.g 500 pixels).", "ultimate_vc"), "dependency" => Array("element" => "icon_border_style", "not_empty" => true), "group" => "Icon", ), array( "type" => "number", "class" => "", "heading" => __("Background Size", "ultimate_vc"), "param_name" => "icon_border_spacing", "value" => 50, "min" => 30, "max" => 500, "suffix" => "px", "description" => __("Spacing from center of the icon till the boundary of border / background", "ultimate_vc"), "dependency" => Array("element" => "icon_style", "value" => array("advanced")), "group" => "Icon", ), array( "type" => "ult_img_single", "class" => "", "heading" => __("Upload Image Icon:", "ultimate_vc"), "param_name" => "icon_img", "value" => "", "description" => __("Upload the custom image icon.", "ultimate_vc"), "dependency" => Array("element" => "icon_type","value" => array("custom")), "group" => "Icon", ), array( "type" => "number", "class" => "", "heading" => __("Image Width", "ultimate_vc"), "param_name" => "img_width", "value" => 48, "min" => 16, "max" => 512, "suffix" => "px", "description" => __("Provide image width", "ultimate_vc"), "dependency" => Array("element" => "icon_type","value" => array("custom")), "group" => "Icon", ), // link style array( "type" => "dropdown", "class" => "", "heading" => __("On Click HotSpot Item:", "ultimate_vc"), "param_name" => "link_style", "value" => array( __("Tooltip","ultimate_vc") => "tooltip", __("Simple Link","ultimate_vc") => "link", ), "description" => __("Display tooltip or just link for the hotspot icon.", "ultimate_vc"), ), array( "type" => "vc_link", "class" => "", "heading" => __("Link ","ultimate_vc"), "param_name" => "icon_link", "value" => "", "description" => __("Add a custom link or select existing page. You can remove existing link as well.","ultimate_vc"), "dependency" => Array("element" => "link_style","value" => "link"), ), // Link style // TOOLTIP array( "type" => "textarea_html", "class" => "", "value" => "Tooltip content goes here!", "heading" => __("Hotspot Tooltip Content", 'ultimate_vc'), "param_name" => "content", "dependency" => Array("element" => "link_style","value" => "tooltip"), 'admin_label' => true, "edit_field_class" => "ult_hide_editor_fullscreen vc_col-xs-12 vc_column wpb_el_type_textarea_html vc_wrapper-param-type-textarea_html vc_shortcode-param", ), /*array( "type" => "ult_switch", "class" => "", "heading" => __("Continuous Pulse Animation For Hotspot", "ultimate_vc"), "param_name" => "tooltip_continuous_animation", // "admin_label" => true, "value" => "on", "default_set" => true, "options" => array( "on" => array( "label" => __("Enable Pulse Animation?","ultimate_vc"), "on" => __("Yes","ultimate_vc"), "off" => __("No","ultimate_vc"), ), ), "description" => __("Animate tooltip continuously or not", 'ultimate_vc'), ),*/ // Tooltip array( "type" => "colorpicker", "class" => "", "heading" => __("Tooltip Text Color", "ultimate_vc"), "param_name" => "tooltip_custom_color", /*"edit_field_class" => "vc_col-sm-6",*/ "value" => "#4c4c4c", /*"dependency" => array("element" => "tooltip_theme", "value" => "custom"),*/ "group" => "Tooltip", "dependency" => Array("element" => "link_style","value" => "tooltip"), /*"description" => __("Select the color for tooltip text.", "smile"), */ ), array( "type" => "colorpicker", "class" => "", "heading" => __("Background Color", "ultimate_vc"), "param_name" => "tooltip_custom_bg_color", /*"edit_field_class" => "vc_col-sm-6",*/ "value" => "#fff", "dependency" => Array("element" => "link_style","value" => "tooltip"), "group" => "Tooltip", ), array( "type" => "number", "class" => "", "value" => "300", "heading" => __("Width", 'ultimate_vc'), "param_name" => "tooltip_width", "group" => "Tooltip", "suffix" => "px", "description" => __("Tooltip Default width: auto.", 'ultimate'), "dependency" => Array("element" => "link_style","value" => "tooltip"), ), array( "type" => "dropdown", "class" => "", "heading" => __("Trigger On", 'ultimate_vc'), "param_name" => "tooltip_trigger", "value" => array("Hover" => "hover", "Click" => "click"), "group" => "Tooltip", "dependency" => Array("element" => "link_style","value" => "tooltip"), /*"description" => __("When to display the tooltip onclick or hover", 'ultimate')*/ ), array( "type" => "dropdown", "class" => "", "heading" => __("Position", 'ultimate_vc'), "param_name" => "tooltip_position", "value" => array( __("Top","ultimate_vc") => "top", __("Bottom","ultimate_vc") => "bottom", __("Left","ultimate_vc") => "left", __("Right","ultimate_vc") => "right" ), "group" => "Tooltip", "dependency" => Array("element" => "link_style","value" => "tooltip"), /*"description" => __("Set position of tooltip.", 'ultimate')*/ ), array( "type" => "ultimate_border", "heading" => __("Border","ultimate_vc"), "param_name" => "tooltip_custom_border_size", "unit" => "px", // [required] px,em,%,all Default all "positions" => array( __("Top","ultimate_vc") => "1", __("Right","ultimate_vc") => "1", __("Bottom","ultimate_vc") => "1", __("Left","ultimate_vc") => "1" ), //"enable_radius" => false, // Enable border-radius. default true "radius" => array( __("Top Left","ultimate_vc") => "3", // use 'Top Left' __("Top Right","ultimate_vc") => "3", // use 'Top Right' __("Bottom Right","ultimate_vc") => "3", // use 'Bottom Right' __("Bottom Left","ultimate_vc") => "3" // use 'Bottom Left' ), "label_color" => __("Border Color","ultimate_vc"), // label for 'border color' default 'Border Color' "label_radius" => __("Border Radius","ultimate_vc"), // label for 'radius' default 'Border Redius' //"label_border" => "Border Style", // label for 'style' default 'Border Style' "group" => "Tooltip", "dependency" => Array("element" => "link_style","value" => "tooltip"), ), array( "type" => "ult_switch", "class" => "", "heading" => __("Arrow", "ultimate_vc"), "param_name" => "enable_bubble_arrow", // "admin_label" => true, "value" => "on", "default_set" => true, "options" => array( "on" => array( "label" => __("Enable Tooltip Arrow?","ultimate_vc"), "on" => __("Yes","ultimate_vc"), "off" => __("No","ultimate_vc"), ), ), /*"description" => __("", "smile"),*/ /*"description" => __("Hide or Show Tooltip Arrow. Default: Hide. ", 'ultimate'),*/ "group" => "Tooltip", "dependency" => Array("element" => "link_style","value" => "tooltip"), ), array( "type" => "dropdown", "class" => "", "heading" => __("Appear Animation", 'ultimate_vc'), "param_name" => "tooltip_animation", "value" => array( __("Fade","ultimate_vc")=>"fade", __("Grow","ultimate_vc")=>"glow", __("Swing","ultimate_vc")=>"swing", __("Slide","ultimate_vc")=>"slide", __("Fall","ultimate_vc")=>"fall", __("Euclid","ultimate_vc")=>"euclid" ), "group" => "Tooltip", "dependency" => Array("element" => "link_style","value" => "tooltip"), ), array( "type" => "ultimate_spacing", "heading" => __("Padding", "ultimate_vc"), "param_name" => "tooltip_padding", "mode" => "padding", // margin/padding "unit" => "px", // [required] px,em,%,all Default all "positions" => array( // Also set 'defaults' __("Top","ultimate_vc") => "", __("Right","ultimate_vc") => "", __("Bottom","ultimate_vc") => "", __("Left","ultimate_vc") => "" ), "group" => "Tooltip", "dependency" => Array("element" => "link_style","value" => "tooltip"), /*"description" => __("Thickness of the Tooltip Border. E.g. 5px 10px 5px 10px or 5px 10px etc.", "ultimate"),*/ /*"dependency" => array("element" => "tooltip_custom_border_style", "not_empty" => true),*/ ), // Typography array( "type" => "ultimate_google_fonts", "heading" => __("Font Family","ultimate_vc"), "param_name" => "tooltip_font", "value" => "", "group" => "Typography", //"dependency" => Array("element" => "link_style","value" => "tooltip"), ), array( "type" => "ultimate_google_fonts_style", "heading" => __("Font Style","ultimate_vc"), "param_name" => "tooltip_font_style", "value" => "", "group" => "Typography", //"dependency" => Array("element" => "link_style","value" => "tooltip"), ), // array( // "type" => "number", // "param_name" => "tooltip_font_size", // "heading" => __("Font size","ultimate_vc"), // "value" => "12", // "suffix" => "px", // "min" => 10, // "group" => "Typography", // "dependency" => Array("element" => "link_style","value" => "tooltip"), // ), // array( // "type" => "number", // "param_name" => "tooltip_font_line_height", // "heading" => __("Line Height","ultimate_vc"), // "value" => "18", // "suffix" => "px", // "min" => 10, // "group" => "Typography", // "dependency" => Array("element" => "link_style","value" => "tooltip"), // ), array( "type" => "ultimate_responsive", "class" => "", "heading" => __("Font size", 'ultimate_vc'), "param_name" => "tooltip_font_size", "unit" => "px", "media" => array( "Desktop" => '', "Tablet" => '', "Tablet Portrait" => '', "Mobile Landscape" => '', "Mobile" => '', ), "group" => "Typography", ), array( "type" => "ultimate_responsive", "class" => "", "heading" => __("Line Height", 'ultimate_vc'), "param_name" => "tooltip_font_line_height", "unit" => "px", "media" => array( "Desktop" => '', "Tablet" => '', "Tablet Portrait" => '', "Mobile Landscape" => '', "Mobile" => '', ), "group" => "Typography", ), array( "type" => "dropdown", "class" => "", "heading" => __("Text Align", 'ultimate_vc'), "param_name" => "tooltip_align", "value" => array( __("Left","ultimate_vc") => "left", __("Center","ultimate_vc") => "center", __("Right","ultimate_vc") => "right", __("Justify","ultimate_vc") => "justify" ), "group" => "Typography", //"dependency" => Array("element" => "link_style","value" => "tooltip"), ), array( "type" => "dropdown", "class" => "", "heading" => __("Animation For Hotspot", 'ultimate_vc'), "param_name" => "tooltip_continuous_animation", "value" => array( __("None","ultimate_vc") => "", __("Pulse","ultimate_vc") => "on", __("Glow","ultimate_vc") => "glow", ), "description" => __("Select animation effect for hotspot icon/image.", 'ultimate_vc'), "group" => "Animation" ), array( "type" => "colorpicker", "heading" => __("Glow Color", "ultimate_vc"), "param_name" => "glow_color", "value" => "", "group" => "Animation", "dependency" => Array("element" => "tooltip_continuous_animation","value" => "glow"), ), ) ) ); } } function ult_hotspot_scripts() { $bsf_dev_mode = bsf_get_option('dev_mode'); if($bsf_dev_mode === 'enable') { $js_path = '../assets/js/'; $css_path = '../assets/css/'; $ext = ''; } else { $js_path = '../assets/min-js/'; $css_path = '../assets/min-css/'; $ext = '.min'; } // css Ultimate_VC_Addons::ultimate_register_style( 'ult_hotspot_css', 'hotspot' ); Ultimate_VC_Addons::ultimate_register_style( 'ult_hotspot_tooltipster_css', 'hotspot-tooltipster' ); // js wp_register_script( 'ult_hotspot_js',plugins_url($js_path."hotspot".$ext.".js",__FILE__),array('jquery'),ULTIMATE_VERSION,false ); wp_register_script( 'ult_hotspot_tooltipster_js',plugins_url($js_path."hotspot-tooltipster".$ext.".js",__FILE__),array('jquery'),ULTIMATE_VERSION,false); } } new ULT_HotSpot; if ( class_exists( 'WPBakeryShortCodesContainer' ) ) { class WPBakeryShortCode_ult_hotspot extends WPBakeryShortCodesContainer { } } if ( class_exists( 'WPBakeryShortCode' ) ) { class WPBakeryShortCode_ult_hotspot_items extends WPBakeryShortCode { } } } ?>