-
WIBUHAX0R1337
-
/
home
/
cideo
/
www
/
wp-contentVIp
/
plugins
/
Ultimate_VC_Addons
/
modules
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
Ultimate_Animation.php
6.847KB
Edit File
Delete File
Rename
Ultimate_Buttons.php
30.191KB
Edit File
Delete File
Rename
Ultimate_Carousel.php
29.106KB
Edit File
Delete File
Rename
Ultimate_Content_Box.php
17.608KB
Edit File
Delete File
Rename
Ultimate_Dual_Button.php
60.037KB
Edit File
Delete File
Rename
Ultimate_Expandable_section.php
38.687KB
Edit File
Delete File
Rename
Ultimate_Fancy_Text.php
26.291KB
Edit File
Delete File
Rename
Ultimate_Flip_Box.php
39.361KB
Edit File
Delete File
Rename
Ultimate_Font_Manager.php
27.27KB
Edit File
Delete File
Rename
Ultimate_Functions.php
3.915KB
Edit File
Delete File
Rename
Ultimate_Google_Maps.php
20.555KB
Edit File
Delete File
Rename
Ultimate_Google_Trends.php
10.384KB
Edit File
Delete File
Rename
Ultimate_Headings.php
30.844KB
Edit File
Delete File
Rename
Ultimate_Hightlight_Box.php
21.757KB
Edit File
Delete File
Rename
Ultimate_Hotspot.php
34.517KB
Edit File
Delete File
Rename
Ultimate_Icon_Manager.php
23.16KB
Edit File
Delete File
Rename
Ultimate_Icon_Timeline.php
66.261KB
Edit File
Delete File
Rename
Ultimate_Icons.php
15.3KB
Edit File
Delete File
Rename
Ultimate_Image_Separator.php
9.216KB
Edit File
Delete File
Rename
Ultimate_Info_Banner.php
31.109KB
Edit File
Delete File
Rename
Ultimate_Info_Box.php
32.965KB
Edit File
Delete File
Rename
Ultimate_Info_Circle.php
37.679KB
Edit File
Delete File
Rename
Ultimate_Info_List.php
31.296KB
Edit File
Delete File
Rename
Ultimate_Info_Tables.php
26.566KB
Edit File
Delete File
Rename
Ultimate_Interactive_Banner_2.php
22.474KB
Edit File
Delete File
Rename
Ultimate_Interactive_Banners.php
24.69KB
Edit File
Delete File
Rename
Ultimate_Just_Icon.php
16.501KB
Edit File
Delete File
Rename
Ultimate_List_Icon.php
17.424KB
Edit File
Delete File
Rename
Ultimate_Modals.php
46.853KB
Edit File
Delete File
Rename
Ultimate_Parallax.php
67.257KB
Edit File
Delete File
Rename
Ultimate_Pricing_Tables.php
26.329KB
Edit File
Delete File
Rename
Ultimate_Range_Slider.php
29.461KB
Edit File
Delete File
Rename
Ultimate_Spacer.php
4.09KB
Edit File
Delete File
Rename
Ultimate_Stats_Counter.php
33.184KB
Edit File
Delete File
Rename
Ultimate_Sticky_Section.php
13.923KB
Edit File
Delete File
Rename
Ultimate_Swatch_Book.php
29.383KB
Edit File
Delete File
Rename
Ultimate_Tab.php
49.881KB
Edit File
Delete File
Rename
Ultimate_Team.php
54.967KB
Edit File
Delete File
Rename
Ultimate_Video_Banner.php
13.956KB
Edit File
Delete File
Rename
Ultimate_iHover.php
37.195KB
Edit File
Delete File
Rename
Ultimate_link.php
24.104KB
Edit File
Delete File
Rename
index.php
0.029KB
Edit File
Delete File
Rename
utlimate-tab-backend.php
1.312KB
Edit File
Delete File
Rename
<?php /* * Module - Advanced Buttons */ if(!class_exists("Ultimate_Buttons")){ class Ultimate_Buttons{ function __construct(){ add_action( 'init', array($this, 'init_buttons') ); add_shortcode( 'ult_buttons',array($this,'ult_buttons_shortcode')); add_action( 'admin_enqueue_scripts', array( $this, 'button_admin_scripts') ); add_action( "wp_enqueue_scripts", array( $this, "advanced_button_scripts"),1 ); } function advanced_button_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'; } wp_register_style("ult-btn",plugins_url($css_path.'advanced-buttons'.$ext.'.css',__FILE__),array(),ULTIMATE_VERSION,false); } function button_admin_scripts($hook){ if($hook == "post.php" || $hook == "post-new.php"){ $bsf_dev_mode = bsf_get_option('dev_mode'); if($bsf_dev_mode === 'enable') { $js_path = '../assets/js/'; $css_path = '../assets/css/'; $ext = ''; wp_enqueue_style( 'ult-button', plugins_url($css_path.'advanced-buttons'.$ext.'.css', __FILE__) ); } } } function ult_buttons_shortcode($atts){ $output = $btn_title = $btn_link = $btn_size = $btn_width = $btn_height = $btn_hover = $btn_bg_color = $btn_radius = $btn_shadow = ''; $btn_shadow_color = $btn_bg_color_hover = $btn_border_style = $btn_color_border = $btn_border_size = $btn_shadow_size = $el_class = ''; $btn_font_family = $btn_font_style = $btn_title_color = $btn_font_size = $icon = $icon_size = $icon_color = $btn_icon_pos = $btn_anim_effect = ''; $btn_padding_left = $btn_padding_top = $button_bg_img = $btn_title_color_hover = $btn_align = $btn_color_border_hover = $btn_shadow_color_hover = ''; $btn_shadow_click = $enable_tooltip = $tooltip_text = $tooltip_pos = $rel = $btn_line_height = ''; extract(shortcode_atts(array( 'btn_title' => '', 'btn_link' => '', 'btn_size' => 'ubtn-normal', 'btn_width' => '', 'btn_height' => '', 'btn_padding_left' => '', 'btn_padding_top' => '', 'btn_hover' => 'ubtn-no-hover-bg', 'btn_bg_color' => '#e0e0e0', 'btn_radius' => '', 'btn_shadow' => '', 'btn_shadow_color' => '', 'btn_shadow_size' => '', 'btn_bg_color_hover' => '', 'btn_title_color_hover' => '', 'btn_border_style' => '', 'btn_color_border' => '', 'btn_color_border_hover' => '', 'btn_border_size' => '', 'btn_font_family' => '', 'btn_font_style' => '', 'btn_title_color' => '#000000', 'btn_font_size' => '', 'btn_line_height' => '', 'icon' => '', 'icon_size' => '', 'icon_color' => '', 'btn_icon_pos' => '', 'btn_anim_effect' => 'none', 'button_bg_img' => '', 'btn_align' => 'ubtn-left', 'btn_shadow_color_hover' => '', 'btn_shadow_click' => '', 'enable_tooltip' => '', 'tooltip_text' => '', 'tooltip_pos' => 'left', 'rel' => '', 'el_class' => '', 'css_adv_btn' => '', ),$atts)); $style = $hover_style = $btn_style_inline = $link_sufix = $link_prefix = $img = $shadow_hover = $shadow_click = $shadow_color = $box_shadow = $main_extra_class = ''; $main_extra_class = $el_class; $tooltip = $tooltip_class = $el_class = $css_btn_design = ''; $el_class .= ' '.$btn_anim_effect.' '; $uniqid = uniqid(); $tooltip_class = 'tooltip-'.$uniqid; $vc_version = (defined('WPB_VC_VERSION')) ? WPB_VC_VERSION : 0; $is_vc_49_plus = (version_compare(4.9, $vc_version, '<=')) ? 'ult-adjust-bottom-margin' : ''; $css_btn_design = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, vc_shortcode_custom_css_class( $css_adv_btn, ' ' ), "ult_buttons", $atts ); $css_btn_design = esc_attr( $css_btn_design ); if($enable_tooltip == "yes"){ wp_enqueue_script('ultimate-tooltip'); wp_enqueue_style('ultimate-tooltip'); $tooltip .= 'data-toggle="tooltip" data-placement="'.$tooltip_pos.'" title="'.$tooltip_text.'"'; $tooltip_class .= " ubtn-tooltip ".$tooltip_pos; } if($btn_shadow_click !== "enable"){ $shadow_click = 'none'; } if($btn_shadow_color_hover == "") $shadow_color = $btn_shadow_color; else $shadow_color = $btn_shadow_color_hover; $alt = 'icon'; if($button_bg_img !== ''){ $img = apply_filters('ult_get_img_single', $button_bg_img, 'url'); $alt = apply_filters('ult_get_img_single', $button_bg_img, 'alt'); } if($btn_link !== ''){ $href = vc_build_link($btn_link); if($href['url'] !== ""){ $target = (isset($href['target'])) ? "target='".$href['target']."'" : ''; if($btn_size == "ubtn-block"){ $tooltip_class .= ' ubtn-block'; } if($rel !== '') $rel = 'rel="'.$rel.'"'; $link_prefix .= '<a class="ubtn-link '.$is_vc_49_plus.' '.$btn_align.' '.$btn_size.' '.$main_extra_class.'" href = "'.$href['url'].'" '.$target.' '.$rel.'>'; $link_sufix .= '</a>'; } } else { if($enable_tooltip !== ""){ $link_prefix .= '<span class="'.$btn_align.'">'; $link_sufix .= '</span>'; } } if($btn_icon_pos !== '' && $icon !== 'none' && $icon !== '') $el_class .= ' ubtn-sep-icon '.$btn_icon_pos.' '; if($btn_font_family != '') { $mhfont_family = get_ultimate_font_family($btn_font_family); $btn_style_inline .= 'font-family:\''.$mhfont_family.'\';'; //enqueue google font /*$args = array( $mhfont_family ); enquque_ultimate_google_fonts($args);*/ } $btn_style_inline .= get_ultimate_font_style($btn_font_style); // if($btn_font_size !== ''){ // $btn_style_inline .= 'font-size:'.$btn_font_size.'px;'; // } $adv_btn_id = 'ubtn-'.rand(1000, 9999); if (is_numeric($btn_font_size)) { $btn_font_size = 'desktop:'.$btn_font_size.'px;'; } if(is_numeric($btn_line_height)){ $btn_line_height = 'desktop:'.$btn_line_height.'px'; } $advbtnargs = array( 'target' => '#'.$adv_btn_id, 'media_sizes' => array( 'font-size' => $btn_font_size, // set 'css property' & 'ultimate_responsive' sizes. Here $title_responsive_font_size holds responsive font sizes from user input. 'line-height' => $btn_line_height ), ); $data_list = get_ultimate_vc_responsive_media_css($advbtnargs); $style .= $btn_style_inline; if($btn_size == 'ubtn-custom'){ $style .= 'width:'.$btn_width.'px;'; $style .= 'min-height:'.$btn_height.'px;'; $style .= 'padding:'.$btn_padding_top.'px '.$btn_padding_left.'px;'; } if($btn_border_style !== ''){ $style .= 'border-radius:'.$btn_radius.'px;'; $style .= 'border-width:'.$btn_border_size.'px;'; $style .= 'border-color:'.$btn_color_border.';'; $style .= 'border-style:'.$btn_border_style.';'; } else { $style .= 'border:none;'; } if($btn_shadow !== ''){ switch($btn_shadow){ case 'shd-top': $style .= 'box-shadow: 0 -'.$btn_shadow_size.'px '.$btn_shadow_color.';'; // $style .= 'bottom: '.($btn_shadow_size-3).'px;'; $box_shadow .= '0 -'.$btn_shadow_size.'px '.$btn_shadow_color.';'; if($shadow_click !== "none") $shadow_hover .= '0 -3px '.$shadow_color.';'; else $shadow_hover .= '0 -'.$btn_shadow_size.'px '.$shadow_color.';'; break; case 'shd-bottom': $style .= 'box-shadow: 0 '.$btn_shadow_size.'px '.$btn_shadow_color.';'; // $style .= 'top: '.($btn_shadow_size-3).'px;'; $box_shadow .= '0 '.$btn_shadow_size.'px '.$btn_shadow_color.';'; if($shadow_click !== "none") $shadow_hover .= '0 3px '.$shadow_color.';'; else $shadow_hover .= '0 '.$btn_shadow_size.'px '.$shadow_color.';'; break; case 'shd-left': $style .= 'box-shadow: -'.$btn_shadow_size.'px 0 '.$btn_shadow_color.';'; // $style .= 'right: '.($btn_shadow_size-3).'px;'; $box_shadow .= '-'.$btn_shadow_size.'px 0 '.$btn_shadow_color.';'; if($shadow_click !== "none") $shadow_hover .= '-3px 0 '.$shadow_color.';'; else $shadow_hover .= '-'.$btn_shadow_size.'px 0 '.$shadow_color.';'; break; case 'shd-right': $style .= 'box-shadow: '.$btn_shadow_size.'px 0 '.$btn_shadow_color.';'; // $style .= 'left: '.($btn_shadow_size-3).'px;'; $box_shadow .= $btn_shadow_size.'px 0 '.$btn_shadow_color.';'; if($shadow_click !== "none") $shadow_hover .= '3px 0 '.$shadow_color.';'; else $shadow_hover .= $btn_shadow_size.'px 0 '.$shadow_color.';'; break; } } if($btn_bg_color !== ''){ $style .= 'background: '.$btn_bg_color.';'; } if($btn_title_color !== ''){ $style .= 'color: '.$btn_title_color.';'; } if($btn_shadow){ $el_class .= ' ubtn-shd '; } if($btn_align){ $el_class .= ' '.$btn_align.' '; } if($btn_title == "" && $icon !== ""){ $el_class .= ' ubtn-only-icon '; } if($btn_link === '') { $el_class .= $main_extra_class; } $output .= '<button type="button" id="'.$adv_btn_id.'" class="ubtn '.$is_vc_49_plus.' ult-responsive '.$btn_size.' '.$btn_hover.' '.$el_class.' '.$btn_shadow.' '.$tooltip_class.'" '.$tooltip.' data-hover="'.$btn_title_color_hover.'" data-border-color="'.$btn_color_border.'" data-bg="'.$btn_bg_color.'" data-hover-bg="'.$btn_bg_color_hover.'" data-border-hover="'.$btn_color_border_hover.'" data-shadow-hover="'.$shadow_hover.'" data-shadow-click="'.$shadow_click.'" data-shadow="'.$box_shadow.'" data-shd-shadow="'.$btn_shadow_size.'" '.$data_list.' style="'.$style.'">'; if($icon !== ''){ $output .= '<span class="ubtn-data ubtn-icon"><i class="'.$icon.'" style="font-size:'.$icon_size.'px;color:'.$icon_color.';"></i></span>'; } $output .= '<span class="ubtn-hover" style="background-color:'.$btn_bg_color_hover.'"></span>'; $output .= '<span class="ubtn-data ubtn-text " >'.$btn_title.'</span>'; $output .= '</button>'; $output = $link_prefix.$output.$link_sufix; // Add a wrapper class to handle bottom margin $wrapper_class = ''; switch ($btn_align) { case 'ubtn-inline': $wrapper_class = 'ubtn-ctn-inline'; break; case 'ubtn-center': $wrapper_class = 'ubtn-ctn-center'; break; case 'ubtn-right': $wrapper_class = 'ubtn-ctn-right'; break; case 'ubtn-left': default: $wrapper_class = 'ubtn-ctn-left'; break; } if($img !== ''){ $output = '<div class="'.$wrapper_class.' '.$main_extra_class.'">'.$output.'</div>'; }else{ $output = '<div class="'.$css_btn_design.' '.$wrapper_class.' '.$main_extra_class.'">'.$output.'</div>'; } if($img !== ''){ $html = '<div class="ubtn-img-container '.$css_btn_design.'">'; $html .= '<img src="'.apply_filters( 'ultimate_images', $img ).'" alt="'.$alt.'"/>'; $html .= $output; $html .= '</div>'; $output = $html; } if($enable_tooltip !== ""){ $output .= '<script> jQuery(function () { jQuery(".tooltip-'.$uniqid.'").bsf_tooltip(); }) </script>'; } $is_preset = false; if(isset($_GET['preset'])) { //It will retrieve settings array $is_preset = true; } if($is_preset) { $text = 'array ( '; foreach ($atts as $key => $att) { $text .= '<br/> \''.$key.'\' => \''.$att.'\','; } if($content != '') { $text .= '<br/> \'content\' => \''.$content.'\','; } $text .= '<br/>)'; $output .= '<pre>'; $output .= $text; $output .= '</pre>'; // remove backslash once copied } return $output; } function init_buttons(){ if(function_exists("vc_map")) { $json = ultimate_get_icon_position_json(); vc_map( array( "name" => __("Advanced Button", "ultimate_vc"), "base" => "ult_buttons", "icon" => "ult_buttons", "class" => "ult_buttons", "content_element" => true, "controls" => "full", "category" => "Ultimate VC Addons", "description" => __("Create creative buttons.","ultimate_vc"), "params" => array( array( "type" => "textfield", "class" => "", "heading" => __("Button Title","ultimate_vc"), "param_name" => "btn_title", "value" => "", "description" => "", "group" => "General", "admin_label" => true ), array( "type" => "vc_link", "class" => "", "heading" => __("Button Link","ultimate_vc"), "param_name" => "btn_link", "value" => "", "description" => "", "group" => "General" ), array( "type" => "dropdown", "class" => "", "heading" => __("Button Alignment","ultimate_vc"), "param_name" => "btn_align", "value" => array( "Left Align" => "ubtn-left", "Center Align" => "ubtn-center", "Right Align" => "ubtn-right", "Inline" => "ubtn-inline", ), "description" => "", "group" => "General" ), array( "type" => "dropdown", "class" => "", "heading" => __("Button Size","ultimate_vc"), "param_name" => "btn_size", "value" => array( __("Normal Button","ultimate_vc") => "ubtn-normal", __("Mini Button","ultimate_vc") => "ubtn-mini", __("Small Button","ultimate_vc") => "ubtn-small", __("Large Button","ultimate_vc") => "ubtn-large", __("Button Block","ultimate_vc") => "ubtn-block", __("Custom Size","ultimate_vc") => "ubtn-custom", ), "description" => "", "group" => "General" ), array( "type" => "number", "class" => "", "heading" => __("Button Width","ultimate_vc"), "param_name" => "btn_width", "value" => "", "min" => 10, "max" => 1000, "suffix" => "px", "description" => "", "dependency" => Array("element" => "btn_size", "value" => "ubtn-custom" ), "group" => "General" ), array( "type" => "number", "class" => "", "heading" => __("Button Height","ultimate_vc"), "param_name" => "btn_height", "value" => "", "min" => 10, "max" => 1000, "suffix" => "px", "description" => "", "dependency" => Array("element" => "btn_size", "value" => "ubtn-custom" ), "group" => "General" ), array( "type" => "number", "class" => "", "heading" => __("Button Left / Right Padding","ultimate_vc"), "param_name" => "btn_padding_left", "value" => "", "min" => 10, "max" => 1000, "suffix" => "px", "description" => "", "dependency" => Array("element" => "btn_size", "value" => "ubtn-custom" ), "group" => "General" ), array( "type" => "number", "class" => "", "heading" => __("Button Top / Bottom Padding","ultimate_vc"), "param_name" => "btn_padding_top", "value" => "", "min" => 10, "max" => 1000, "suffix" => "px", "description" => "", "dependency" => Array("element" => "btn_size", "value" => "ubtn-custom" ), "group" => "General" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Button Title Color","ultimate_vc"), "param_name" => "btn_title_color", "value" => "#000000", "description" => "", "group" => "General" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Background Color","ultimate_vc"), "param_name" => "btn_bg_color", "value" => "#e0e0e0", "description" => "", "group" => "General" ), array( "type" => "textfield", "heading" => __("Extra class name", "ultimate_vc"), "param_name" => "el_class", "description" => __("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.", "ultimate_vc"), "group" => "General" ), array( "type" => "textfield", "heading" => __("Rel Attribute", "ultimate_vc"), "param_name" => "rel", "description" => __("This is useful when you want to trigger third party features. Example- prettyPhoto, thickbox etc", "ultimate_vc"), "group" => "General", ), array( "type" => "dropdown", "class" => "", "heading" => __("Button Hover Background Effect","ultimate_vc"), "param_name" => "btn_hover", "value" => array( __("No Effect","ultimate_vc") => "ubtn-no-hover-bg", __("Fade Background","ultimate_vc") => "ubtn-fade-bg", __("Fill Background from Top","ultimate_vc") => "ubtn-top-bg", __("Fill Background from Bottom","ultimate_vc") => "ubtn-bottom-bg", __("Fill Background from Left","ultimate_vc") => "ubtn-left-bg", __("Fill Background from Right","ultimate_vc") => "ubtn-right-bg", __("Fill Background from Center Horizontally","ultimate_vc") => "ubtn-center-hz-bg", __("Fill Background from Center Vertically","ultimate_vc") => "ubtn-center-vt-bg", __("Fill Background from Center Diagonal","ultimate_vc") => "ubtn-center-dg-bg", ), "description" => "", "group" => "Background" ), array( "type" => "dropdown", "class" => "no-ult-effect", 'edit_field_class' => 'ult-no-effect vc_column vc_col-sm-12', "heading" => __("Button Hover Animation Effects","ultimate_vc"), "param_name" => "btn_anim_effect", "value" => array( "No Effect" => "none", "Grow" => "ulta-grow", "Shrink" => "ulta-shrink", "Pulse" => "ulta-pulse", "Pulse Grow" => "ulta-pulse-grow", "Pulse Shrink" => "ulta-pulse-shrink", "Push" => "ulta-push", "Pop" => "ulta-pop", "Rotate" => "ulta-rotate", "Grow Rotate" => "ulta-grow-rotate", "Float" => "ulta-float", "Sink" => "ulta-sink", "Hover" => "ulta-hover", "Hang" => "ulta-hang", "Skew" => "ulta-skew", "Skew Forward" => "ulta-skew-forward", "Skew Backward" => "ulta-skew-backward", "Wobble Horizontal" => "ulta-wobble-horizontal", "Wobble Vertical" => "ulta-wobble-vertical", "Wobble to Bottom Right" => "ulta-wobble-to-bottom-right", "Wobble to Top Right" => "ulta-wobble-to-top-right", "Wobble Top" => "ulta-wobble-top", "Wobble Bottom" => "ulta-wobble-bottom", "Wobble Skew" => "ulta-wobble-skew", "Buzz" => "ulta-buzz", "Buzz Out" => "ulta-buzz-out", ), "description" => "", "group" => "Background" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Hover Background Color","ultimate_vc"), "param_name" => "btn_bg_color_hover", "value" => "", "description" => "", "group" => "Background" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Hover Text Color","ultimate_vc"), "param_name" => "btn_title_color_hover", "value" => "", "description" => "", "group" => "Background" ), array( "type" => "ult_img_single", "class" => "", "heading" => __("Button Background Image","ultimate_vc"), "param_name" => "button_bg_img", "value" => "", "description" => __("Upload the image on which you want to place the button.","ultimate_vc"), "group" => "Background" ), 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, you can","ultimate_vc")." <a href='admin.php?page=bsf-font-icon-manager' target='_blank'>".__('add new here','ultimate_vc')."</a>.", "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"), "group" => "Icon" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Color", "ultimate_vc"), "param_name" => "icon_color", "value" => "", "description" => __("Give it a nice paint!", "ultimate_vc"), "group" => "Icon" ), /* array( "type" => "dropdown", "class" => "", "heading" => __("Icon Position", "smile"), "param_name" => "btn_icon_pos", "value" => array( "Icon pull from left" => "ubtn-sep-icon-left", "Icon push to left" => "ubtn-sep-icon-left-rev", "Icon pull from right" => "ubtn-sep-icon-right", "Icon push to right" => "ubtn-sep-icon-right-rev", "Icon push from top" => "ubtn-sep-icon-top-push", "Icon push from bottom" => "ubtn-sep-icon-bottom-push", "Icon push from left" => "ubtn-sep-icon-left-push", "Icon push from right" => "ubtn-sep-icon-right-push", ), "description" => "", "group" => "Icon" ), */ array( "type" => "ult_button", "class" => "", "heading" => __("Icon Position ","ultimate_vc"), "param_name" => "btn_icon_pos", "value" => "", "json" => $json, "description" => "", "group" => "Icon" ), array( "type" => "dropdown", "class" => "", "heading" => __("Button Border Style", "ultimate_vc"), "param_name" => "btn_border_style", "value" => array( "None"=> "", "Solid"=> "solid", "Dashed" => "dashed", "Dotted" => "dotted", "Double" => "double", "Inset" => "inset", "Outset" => "outset", ), "description" => "", "group" => "Styling" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Border Color", "ultimate_vc"), "param_name" => "btn_color_border", "value" => "", "description" => "", "dependency" => Array("element" => "btn_border_style", "not_empty" => true), "group" => "Styling" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Border Color on Hover", "ultimate_vc"), "param_name" => "btn_color_border_hover", "value" => "", "description" => "", "dependency" => Array("element" => "btn_border_style", "not_empty" => true), "group" => "Styling" ), array( "type" => "number", "class" => "", "heading" => __("Border Width", "ultimate_vc"), "param_name" => "btn_border_size", "value" => 1, "min" => 1, "max" => 10, "suffix" => "px", "description" => "", "dependency" => Array("element" => "btn_border_style", "not_empty" => true), "group" => "Styling" ), array( "type" => "number", "class" => "", "heading" => __("Border Radius","ultimate_vc"), "param_name" => "btn_radius", "value" => 3, "min" => 0, "max" => 500, "suffix" => "px", "description" => "", "dependency" => Array("element" => "btn_border_style", "not_empty" => true), "group" => "Styling" ), array( 'type' => 'css_editor', 'heading' => __( 'Css', 'ultimate_vc' ), 'param_name' => 'css_adv_btn', 'group' => __( 'Styling', 'ultimate_vc' ), 'edit_field_class' => 'vc_col-sm-12 vc_column no-vc-background no-vc-border creative_link_css_editor', ), array( "type" => "dropdown", "class" => "", "heading" => __("Button Shadow", "ultimate_vc"), "param_name" => "btn_shadow", "value" => array( __('No Shadow','ultimate_vc') => '', __('Shadow at Top','ultimate_vc') => 'shd-top', __('Shadow at Bottom','ultimate_vc') => 'shd-bottom', __('Shadow at Left','ultimate_vc') => 'shd-left', __('Shadow at Right','ultimate_vc') => 'shd-right', ), //"description" => __("", "smile"), "group" => "Shadow" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Shadow Color","ultimate_vc"), "param_name" => "btn_shadow_color", "value" => "", "description" => "", "dependency" => Array("element" => "btn_shadow", "not_empty" => true), "group" => "Shadow" ), array( "type" => "colorpicker", "class" => "", "heading" => __("Shadow Color on Hover","ultimate_vc"), "param_name" => "btn_shadow_color_hover", "value" => "", "description" => "", "dependency" => Array("element" => "btn_shadow", "not_empty" => true), "group" => "Shadow" ), array( "type" => "number", "class" => "", "heading" => __("Shadow Size","ultimate_vc"), "param_name" => "btn_shadow_size", "value" => 5, "min" => 0, "max" => 100, "suffix" => "px", "description" => "", "dependency" => Array("element" => "btn_shadow", "not_empty" => true), "group" => "Shadow" ), array( "type" => "ult_switch", "class" => "", "heading" => __("Button Click Effect", "ultimate_vc"), "param_name" => "btn_shadow_click", "value" => "", "options" => array( "enable" => array( "label" => "", "on" => "Yes", "off" => "No", ) ), "description" => __("Enable Click effect on hover", "ultimate_vc"), "dependency" => Array("element" => "btn_shadow", "not_empty" => true), "group" => "Shadow" ), array( "type" => "ultimate_google_fonts", "heading" => __("Font Family", "ultimate_vc"), "param_name" => "btn_font_family", "description" => __("Select the font of your choice.","ultimate_vc")." ".__("You can","ultimate_vc")." <a target='_blank' href='".admin_url('admin.php?page=bsf-google-font-manager')."'>".__("add new in the collection here","ultimate_vc")."</a>.", "group" => "Typography" ), array( "type" => "ultimate_google_fonts_style", "heading" => __("Font Style", "ultimate_vc"), "param_name" => "btn_font_style", "group" => "Typography" ), // array( // "type" => "number", // "class" => "font-size", // "heading" => __("Font Size", "ultimate_vc"), // "param_name" => "btn_font_size", // "min" => 14, // "suffix" => "px", // "group" => "Typography" // ), array( "type" => "ultimate_responsive", "class" => "", "heading" => __("Font size", 'ultimate_vc'), "param_name" => "btn_font_size", "unit" => "px", "media" => array( /*"Large Screen" => '',*/ "Desktop" => '', "Tablet" => '', "Tablet Portrait" => '', "Mobile Landscape" => '', "Mobile" => '', ), "group" => "Typography" ), array( "type" => "ultimate_responsive", "class" => "", "heading" => __("Line Height", 'ultimate_vc'), "param_name" => "btn_line_height", "unit" => "px", "media" => array( /*"Large Screen" => '',*/ "Desktop" => '', "Tablet" => '', "Tablet Portrait" => '', "Mobile Landscape" => '', "Mobile" => '', ), "group" => "Typography" ), array( "type" => "checkbox", "class" => "", "heading" => __("Tooltip Options", "ultimate_vc"), "param_name" => "enable_tooltip", "value" => array("Enable tooltip on button" => "yes"), "group" => "Tooltip" ), array( "type" => "textfield", "class" => "", "heading" => __("Text", "ultimate_vc"), "param_name" => "tooltip_text", "value" => "", "dependency" => Array("element" => "enable_tooltip", "value" => "yes"), "group" => "Tooltip", ), array( "type" => "dropdown", "class" => "", "heading" => __("Position", "ultimate_vc"), "param_name" => "tooltip_pos", "value" => array( __("Tooltip from Left","ultimate_vc") => "left", __("Tooltip from Right","ultimate_vc") => "right", __("Tooltip from Top","ultimate_vc") => "top", __("Tooltip from Bottom","ultimate_vc") => "bottom", ), "description" => __("Select the tooltip position","ultimate_vc"), "dependency" => Array("element" => "enable_tooltip", "value" => "yes"), "group" => "Tooltip", ), array( "type" => "ult_param_heading", "text" => "<span style='display: block;'><a href='http://bsf.io/0n-7p' target='_blank'>".__("Watch Video Tutorial","ultimate_vc")." <span class='dashicons dashicons-video-alt3' style='font-size:30px;vertical-align: middle;color: #e52d27;'></span></a></span>", "param_name" => "notification", 'edit_field_class' => 'ult-param-important-wrapper ult-dashicon ult-align-right ult-bold-font ult-blue-font vc_column vc_col-sm-12', "group" => "General" ), ) ) ); } } } new Ultimate_Buttons; if(class_exists('WPBakeryShortCode')) { class WPBakeryShortCode_ult_buttons extends WPBakeryShortCode { } } }
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat