Current File : /home/n742ef5/royalanteam.com/wp-content/plugins/Ultimate_VC_Addons/modules/ultimate_buttons.php |
<?php
/**
* UAVC Ultimate Buttons module file
*
* @package Ultimate_VC_Addons_Buttons
*/
if ( ! class_exists( 'Ultimate_VC_Addons_Buttons' ) ) {
/**
* Function that initializes Ultimate Buttons Module
*
* @class Ultimate_VC_Addons_Buttons
*/
class Ultimate_VC_Addons_Buttons {
/**
* Constructor function that constructs default values for the Ultimate Buttons module.
*
* @method __construct
*/
public function __construct() {
if ( Ultimate_VC_Addons::$uavc_editor_enable ) {
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 to regester style
*
* @since ----
* @access public
*/
public function advanced_button_scripts() {
Ultimate_VC_Addons::ultimate_register_style( 'ultimate-vc-addons-btn', 'advanced-buttons' );
}
/**
* Function for button admin script
*
* @since ----
* @param mixed $hook for the script.
* @access public
*/
public function button_admin_scripts( $hook ) {
if ( 'post.php' == $hook || 'post-new.php' == $hook ) {
$bsf_dev_mode = bsf_get_option( 'dev_mode' );
if ( 'enable' === $bsf_dev_mode ) {
$js_path = UAVC_URL . '/assets/js/';
$css_path = UAVC_URL . '/assets/css/';
$ext = '';
wp_enqueue_style( 'ultimate-vc-addons-button', $css_path . 'advanced-buttons' . $ext . '.css', null, ULTIMATE_VERSION, 'all' );
}
}
}
/**
* Function for button module shortcode
*
* @since ----
* @param array $atts represts module attribuits.
* @access public
*/
public function ult_buttons_shortcode( $atts ) {
$output = '';
$target = '';
$link_title = '';
$ult_ub_settings = 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_attr' => '',
'el_class' => '',
'css_adv_btn' => '',
'ult_btn_custom_onclick' => '',
'ult_btn_custom_onclick_code' => '',
),
$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 = $ult_ub_settings['el_class'];
$tooltip = '';
$tooltip_class = '';
$ult_ub_settings['el_class'] = '';
$css_btn_design = '';
$ult_ub_settings['el_class'] .= ' ' . $ult_ub_settings['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( $ult_ub_settings['css_adv_btn'], ' ' ), 'ult_buttons', $atts );
$css_btn_design = esc_attr( $css_btn_design );
if ( 'yes' == $ult_ub_settings['enable_tooltip'] ) {
wp_enqueue_script( 'ultimate-vc-addons-tooltip' );
wp_enqueue_style( 'ultimate-vc-addons-tooltip' );
$tooltip .= 'data-toggle="tooltip" data-placement="' . esc_attr( $ult_ub_settings['tooltip_pos'] ) . '" title="' . esc_attr( $ult_ub_settings['tooltip_text'] ) . '"';
$tooltip_class .= ' ubtn-tooltip ' . $ult_ub_settings['tooltip_pos'];
}
if ( 'enable' !== $ult_ub_settings['btn_shadow_click'] ) {
$shadow_click = 'none';
}
if ( '' == $ult_ub_settings['btn_shadow_color_hover'] ) {
$shadow_color = $ult_ub_settings['btn_shadow_color'];
} else {
$shadow_color = $ult_ub_settings['btn_shadow_color_hover'];
}
$alt = 'icon';
if ( '' !== $ult_ub_settings['button_bg_img'] ) {
$img = apply_filters( 'ult_get_img_single', $ult_ub_settings['button_bg_img'], 'url' );
$alt = apply_filters( 'ult_get_img_single', $ult_ub_settings['button_bg_img'], 'alt' );
}
if ( '' !== $ult_ub_settings['btn_link'] ) {
$href = vc_build_link( $ult_ub_settings['btn_link'] );
if ( '' !== $href['url'] ) {
$url = ( isset( $href['url'] ) && '' !== $href['url'] ) ? $href['url'] : '';
$target = ( isset( $href['target'] ) && '' !== $href['target'] ) ? esc_attr( trim( $href['target'] ) ) : '';
$link_title = ( isset( $href['title'] ) && '' !== $href['title'] ) ? esc_attr( $href['title'] ) : '';
$rel = ( isset( $href['rel'] ) && '' !== $href['rel'] ) ? esc_attr( $href['rel'] ) : '';
if ( '' == $rel ) {
$rel .= esc_attr( $ult_ub_settings['rel_attr'] );
} else {
$rel .= ' ' . esc_attr( $ult_ub_settings['rel_attr'] );
}
if ( 'ubtn-block' == $ult_ub_settings['btn_size'] ) {
$tooltip_class .= ' ubtn-block';
}
$link_prefix .= '<a class="ubtn-link ' . esc_attr( $is_vc_49_plus ) . ' ' . esc_attr( $ult_ub_settings['btn_align'] ) . ' ' . esc_attr( $ult_ub_settings['btn_size'] ) . ' ' . esc_attr( $main_extra_class ) . '" ' . Ultimate_VC_Addons::uavc_link_init( $url, $target, $link_title, $rel ) . '>';
$link_sufix .= '</a>';
}
} else {
if ( '' !== $ult_ub_settings['enable_tooltip'] ) {
$link_prefix .= '<span class="' . esc_attr( $ult_ub_settings['btn_align'] ) . '">';
$link_sufix .= '</span>';
}
}
if ( '' !== $ult_ub_settings['btn_icon_pos'] && 'none' !== $ult_ub_settings['icon'] && '' !== $ult_ub_settings['icon'] ) {
$ult_ub_settings['el_class'] .= ' ubtn-sep-icon ' . $ult_ub_settings['btn_icon_pos'] . ' ';
}
if ( '' != $ult_ub_settings['btn_font_family'] ) {
$mhfont_family = get_ultimate_font_family( $ult_ub_settings['btn_font_family'] );
$btn_style_inline .= 'font-family:\'' . $mhfont_family . '\';';
}
$btn_style_inline .= get_ultimate_font_style( $ult_ub_settings['btn_font_style'] );
$adv_btn_id = 'ubtn-' . wp_rand( 1000, 9999 );
if ( is_numeric( $ult_ub_settings['btn_font_size'] ) ) {
$ult_ub_settings['btn_font_size'] = 'desktop:' . $ult_ub_settings['btn_font_size'] . 'px;';
}
if ( is_numeric( $ult_ub_settings['btn_line_height'] ) ) {
$ult_ub_settings['btn_line_height'] = 'desktop:' . $ult_ub_settings['btn_line_height'] . 'px';
}
$advbtnargs = array(
'target' => '#' . $adv_btn_id,
'media_sizes' => array(
'font-size' => $ult_ub_settings['btn_font_size'], // set 'css property' & 'ultimate_responsive' sizes. Here $title_responsive_font_size holds responsive font sizes from user input.
'line-height' => $ult_ub_settings['btn_line_height'],
),
);
$data_list = get_ultimate_vc_responsive_media_css( $advbtnargs );
$style .= $btn_style_inline;
if ( 'ubtn-custom' == $ult_ub_settings['btn_size'] ) {
$style .= 'width:' . $ult_ub_settings['btn_width'] . 'px;';
$style .= 'min-height:' . $ult_ub_settings['btn_height'] . 'px;';
$style .= 'padding:' . $ult_ub_settings['btn_padding_top'] . 'px ' . $ult_ub_settings['btn_padding_left'] . 'px;';
}
if ( '' !== $ult_ub_settings['btn_border_style'] ) {
$style .= 'border-radius:' . $ult_ub_settings['btn_radius'] . 'px;';
$style .= 'border-width:' . $ult_ub_settings['btn_border_size'] . 'px;';
$style .= 'border-color:' . $ult_ub_settings['btn_color_border'] . ';';
$style .= 'border-style:' . $ult_ub_settings['btn_border_style'] . ';';
} else {
$style .= 'border:none;';
}
if ( '' !== $ult_ub_settings['btn_shadow'] ) {
switch ( $ult_ub_settings['btn_shadow'] ) {
case 'shd-top':
$style .= 'box-shadow: 0 -' . $ult_ub_settings['btn_shadow_size'] . 'px ' . $ult_ub_settings['btn_shadow_color'] . ';';
$box_shadow .= '0 -' . $ult_ub_settings['btn_shadow_size'] . 'px ' . $ult_ub_settings['btn_shadow_color'] . ';';
if ( 'none' !== $shadow_click ) {
$shadow_hover .= '0 -3px ' . $shadow_color . ';';
} else {
$shadow_hover .= '0 -' . $ult_ub_settings['btn_shadow_size'] . 'px ' . $shadow_color . ';';
}
break;
case 'shd-bottom':
$style .= 'box-shadow: 0 ' . $ult_ub_settings['btn_shadow_size'] . 'px ' . $ult_ub_settings['btn_shadow_color'] . ';';
$box_shadow .= '0 ' . $ult_ub_settings['btn_shadow_size'] . 'px ' . $ult_ub_settings['btn_shadow_color'] . ';';
if ( 'none' !== $shadow_click ) {
$shadow_hover .= '0 3px ' . $shadow_color . ';';
} else {
$shadow_hover .= '0 ' . $ult_ub_settings['btn_shadow_size'] . 'px ' . $shadow_color . ';';
}
break;
case 'shd-left':
$style .= 'box-shadow: -' . $ult_ub_settings['btn_shadow_size'] . 'px 0 ' . $ult_ub_settings['btn_shadow_color'] . ';';
$box_shadow .= '-' . $ult_ub_settings['btn_shadow_size'] . 'px 0 ' . $ult_ub_settings['btn_shadow_color'] . ';';
if ( 'none' !== $shadow_click ) {
$shadow_hover .= '-3px 0 ' . $shadow_color . ';';
} else {
$shadow_hover .= '-' . $ult_ub_settings['btn_shadow_size'] . 'px 0 ' . $shadow_color . ';';
}
break;
case 'shd-right':
$style .= 'box-shadow: ' . $ult_ub_settings['btn_shadow_size'] . 'px 0 ' . $ult_ub_settings['btn_shadow_color'] . ';';
$box_shadow .= $ult_ub_settings['btn_shadow_size'] . 'px 0 ' . $ult_ub_settings['btn_shadow_color'] . ';';
if ( 'none' !== $shadow_click ) {
$shadow_hover .= '3px 0 ' . $shadow_color . ';';
} else {
$shadow_hover .= $ult_ub_settings['btn_shadow_size'] . 'px 0 ' . $shadow_color . ';';
}
break;
}
}
$btn_custom_onclick_code = '';
if ( ! empty( $ult_ub_settings['ult_btn_custom_onclick'] ) && $ult_ub_settings['ult_btn_custom_onclick_code'] ) {
$btn_custom_onclick_code = 'onclick="' . esc_attr( ult_prepareAtts( $ult_ub_settings['ult_btn_custom_onclick_code'] ) ) . '"';
}
if ( '' !== $ult_ub_settings['btn_bg_color'] ) {
$style .= 'background: ' . $ult_ub_settings['btn_bg_color'] . ';';
}
if ( '' !== $ult_ub_settings['btn_title_color'] ) {
$style .= 'color: ' . $ult_ub_settings['btn_title_color'] . ';';
}
if ( $ult_ub_settings['btn_shadow'] ) {
$ult_ub_settings['el_class'] .= ' ubtn-shd ';
}
if ( $ult_ub_settings['btn_align'] ) {
$ult_ub_settings['el_class'] .= ' ' . $ult_ub_settings['btn_align'] . ' ';
}
if ( '' == $ult_ub_settings['btn_title'] && '' !== $ult_ub_settings['icon'] ) {
$ult_ub_settings['el_class'] .= ' ubtn-only-icon ';
}
if ( '' === $ult_ub_settings['btn_link'] ) {
$ult_ub_settings['el_class'] .= $main_extra_class;
}
$output .= '<button type="button" id="' . esc_attr( $adv_btn_id ) . '" ' . $btn_custom_onclick_code . ' class="ubtn ' . esc_attr( $is_vc_49_plus ) . ' ult-responsive ' . esc_attr( $ult_ub_settings['btn_size'] ) . ' ' . esc_attr( $ult_ub_settings['btn_hover'] ) . ' ' . esc_attr( $ult_ub_settings['el_class'] ) . ' ' . esc_attr( $ult_ub_settings['btn_shadow'] ) . ' ' . esc_attr( $tooltip_class ) . '" ' . $tooltip . ' data-hover="' . esc_attr( $ult_ub_settings['btn_title_color_hover'] ) . '" data-border-color="' . esc_attr( $ult_ub_settings['btn_color_border'] ) . '" data-bg="' . esc_attr( $ult_ub_settings['btn_bg_color'] ) . '" data-hover-bg="' . esc_attr( $ult_ub_settings['btn_bg_color_hover'] ) . '" data-border-hover="' . esc_attr( $ult_ub_settings['btn_color_border_hover'] ) . '" data-shadow-hover="' . esc_attr( $shadow_hover ) . '" data-shadow-click="' . esc_attr( $shadow_click ) . '" data-shadow="' . esc_attr( $box_shadow ) . '" data-shd-shadow="' . esc_attr( $ult_ub_settings['btn_shadow_size'] ) . '" ' . $data_list . ' style="' . esc_attr( $style ) . '">';
if ( '' !== $ult_ub_settings['icon'] ) {
$output .= '<span class="ubtn-data ubtn-icon"><i class="' . esc_attr( $ult_ub_settings['icon'] ) . '" style="font-size:' . esc_attr( $ult_ub_settings['icon_size'] ) . 'px;color:' . esc_attr( $ult_ub_settings['icon_color'] ) . ';"></i></span>';
}
$output .= '<span class="ubtn-hover" style="background-color:' . esc_attr( $ult_ub_settings['btn_bg_color_hover'] ) . '"></span>';
$output .= '<span class="ubtn-data ubtn-text " >' . esc_html( $ult_ub_settings['btn_title'] ) . '</span>';
$output .= '</button>';
$output = $link_prefix . $output . $link_sufix;
// Add a wrapper class to handle bottom margin.
$wrapper_class = '';
switch ( $ult_ub_settings['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="' . esc_attr( $wrapper_class ) . ' ' . esc_attr( $main_extra_class ) . '">' . $output . '</div>';
} else {
$output = '<div class="' . esc_attr( $css_btn_design ) . ' ' . esc_attr( $wrapper_class ) . ' ' . esc_attr( $main_extra_class ) . '">' . $output . '</div>';
}
if ( '' !== $img ) {
$html = '<div class="ubtn-img-container ' . esc_attr( $css_btn_design ) . '">';
$html .= '<img src="' . esc_url( apply_filters( 'ultimate_images', $img ) ) . '" alt="' . esc_attr( $alt ) . '"/>';
$html .= $output;
$html .= '</div>';
$output = $html;
}
$is_preset = false;
if ( isset( $_GET['preset'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$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 to intialize the button module
*
* @since ----
* @access public
*/
public 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_attr',
'description' => __( 'This is useful when you want to trigger third party features. Example- prettyPhoto, thickbox etc', 'ultimate_vc' ),
'group' => 'General',
),
array(
'type' => 'checkbox',
'heading' => __( 'Advanced on click action', 'ultimate_vc' ),
'param_name' => 'ult_btn_custom_onclick',
'description' => __( 'Insert inline onclick javascript action.', 'ultimate_vc' ),
'group' => 'General',
),
array(
'type' => 'textfield',
'heading' => __( 'On click code', 'ultimate_vc' ),
'param_name' => 'ult_btn_custom_onclick_code',
'description' => __( 'Enter onclick action code.', 'ultimate_vc' ),
'dependency' => array(
'element' => 'ult_btn_custom_onclick',
'not_empty' => true,
),
'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' rel='noopener'>" . __( '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' => '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',
),
'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' rel='noopener' 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' => 'ultimate_responsive',
'class' => '',
'heading' => __( 'Font size', 'ultimate_vc' ),
'param_name' => 'btn_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' => 'btn_line_height',
'unit' => 'px',
'media' => array(
'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' rel='noopener'>" . __( '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_VC_Addons_Buttons();
if ( class_exists( 'WPBakeryShortCode' ) && ! class_exists( 'WPBakeryShortCode_Ult_Buttons' ) ) {
/**
* Function that initializes Ultimate Buttons Module
*
* @class WPBakeryShortCode_Ult_Buttons
*/
class WPBakeryShortCode_Ult_Buttons extends WPBakeryShortCode {
}
}
}